Support Forum

ACHTUNG: Momentan ist das Forum aus Zeitgründen auf reinen Lesemodus geschaltet. Es können keine Einträge vorgenommen werden. Bitte schickt keine Supportanfragen per eMail.
ATTENTION: Due to a massive lack of time the forums are currently in read-only modus. Please avoid sending support-questions via email.

Willkommen im Support Forum. Bitte nutzt das Forum für alle Fragen, Probleme und Fehlermeldungen rund um meine Themes. Um Spam zu vermeiden, müsst Ihr dazu ab sofort registriert sein. Ihr könnt hier in Deutsch oder auch Englisch posten.

Welcome to the support forums. Please use this forums for any type of questions, bug-reports or any other related stuff concerning my themes. To avoid spam you have to be registered to post in this forum.


Bevor Ihr im Forum postet, schaut nach, ob eure Frage nich schon einmal beantwortet wurde. Es werden keine Fragen zu grundlegenden WordPress Funktionalitäten beantwortet. Dafür gibt es die allgemeinen WordPress Foren und den unschlagbaren WordPress Codex. Außerdem empfehle ich zuerst die Tutorials zu lesen, da dort die meisten Fragen beantwortet werden. Für absolute Anfänger, die bisher wenig mit WordPress gearbeitet haben, empfiehlt es sich, ein paar Euro in das e-Book “Sites that Soar” von Aisling d´Art zu investieren. Das Buch erklärt den Aufbau einer Website anhand von BranfordMagazine Schritt für Schritt. Es ist zwar nur in englisch verfügbar, aber doch sehr einfach und verständlich.

Please make sure your question hasn´t been postet before. I will not answer questions on basic WordPress functionalities because there are general WordPress forums and the amazing WordPress Codex which do this job better. Check out the tutorials. Most of the questions will be answered here. For unexperienced WordPress useres I reccomend to purchase the e-book “Sites that Soar” by Aisling d´Art. This book shows a step-by-step how-to build up a website using WordPress and BranfordMagazinne.

This e-book is highly recommended for new WordPress users
who want to use BranfordMagazine:

Get the e-book 'Sites that Soar'



Ich stehe für individuelle Programmierarbeiten, oder Themeanpassungen zur Verfügung. Bei Interesse schickt mir einfach eine eMail an support[at]der-prinz.com. Bitte lest zuerst die “Forumsregeln” bevor Ihr postet.

I am available for freelance programming or theme customization. If you are interested just drop me an email at support[at]der-prinz.com. Please read the “forum rules” before you post.



This forum is currently locked - access is read only
You must be logged in to post Login

Search 
Search Forums:


 




knguyentu.com: Bradford meet Wynton

UserPost

08:48
14. Juni 2008


smilepak

Member

posts 25

1

I recently revised and added a few new RSS feed coding to it to do feed off photogallery.

22:43
10. Juni 2008


smilepak

Member

posts 25

2

tobi said:

hey,

but in IE7 its all fine. just IE6 causes problems…



I've been trying to ponder that as well. IE6, the sidebar is out of alignment and shift to the bottom of the page. I can't seems to figure that one out. 
 

15:39
9. Juni 2008


tobi

Guest

3

hey,

but in IE7 its all fine. just IE6 causes problems…


07:06
8. Juni 2008


smilepak

Member

posts 25

4

tobi said:

hey,

i could re-check with IE6 today, and my site is also a bit damaged ;-) the middle column is moved all the way down beneath the left column.

i hope i can fix it soon.


From what i've gather, that is a known issue with IE7 because of how it render CSS float tag. Safari, Firefox, and Opera render those fine.

01:08
8. Juni 2008


tobi

Guest

5

hey,

i could re-check with IE6 today, and my site is also a bit damaged ;-) the middle column is moved all the way down beneath the left column.

i hope i can fix it soon.

21:59
7. Juni 2008


smilepak

Member

posts 25

6

Thanks!

Let me know if you want a copy of the index.php file. I moved that lead container to a ui.tab.php so i can send you that to mock with.

Still mocking around with the modification, I like the slideshow you have put together. I've used that too.

01:02
6. Juni 2008


tobi

Guest

7

WOW. I love your customization! I took the lead-container style you put on and put it on my slideshow. http://www.perfectsurf.de/ Hope thats ok with you?! As for IE6 I can't tell. I only have IE7 installed, but IE7 makes a strange error in my left-col (your page looks fine!). It seems too long?? Someone knows what that might be?

00:40
5. Juni 2008


smilepak

Member

posts 25

8

Anyone using IE 6.0 viewing that site, are the sidebar out of alignment?


It is totally out of alignment on my computer with IE6.0, but looks fine with IE 7.0, Opera, Firefox, and Safari…


In IE 6.0, the sidebar is moved all the way to the bottom…

00:08
4. Juni 2008


smilepak

Member

posts 25

9

Oh, known issue…i thought it was something I had mocked with causing the issue ehhehe…

Anyone, RSS Feed replacement of the Feature Lead Story on the index page is completed. Using PHP script called lastRSS.php (you can google it), you can easily insert RSS feed in any page you want.


Here is a snip it of the code if anyone is interested..In red is the open and close DIV tag used to create the boxes on the index page. The rest is the code to loop through the array. You can list your feed in the last part of this code seperated by a “,”.

You could control how many article per feed by modifying the lastRSS.PHP. Let me know if you need that PHP if you can't find it through google. I had modified it at some point awhile back.

<!– RSS FEED –>
          <?
          include('lastRSS.php');
          $rss = new lastRSS;
          $rss->cache_dir = '../temp';
          $rss->cache_time = 3600; // one hour
          function ShowOneRSS($url) {
            global $rss;
            if ($rs = $rss->get($url)) {
              echo “<h3><a href=\”$rs[link]\” class=mainlevel1>$rs[title]</a></h3>\n”;
              foreach($rs['items'] as $item) {
              // This DIV class create the BOX around the article
                echo “<div class=\”feature\”>”;
                $item['description'] = str_replace ('&#60;', '<', $item['description']);
                echo “\t<a href=\”$item[link]\” class=\”title\”>”.$item['title'].”</a><br />”.$item['description'].”\n”;
                echo “</div><br>”;
              }

              if ($rs['items_count'] <= 0) {
                echo “<li>Sorry, no items found in the RSS file :-(</li>”;
              }
              echo “</ul>\n”;
            } else {
              echo “Sorry: It's not possible to reach RSS file $url\n<br />”;
              // you will probably hide this message in a live version
            }
        }

          $rss_array = array(
            'http://rss.news.yahoo.com/rss/topstories');
          foreach ($rss_array as $url) {
            ShowOneRSS($url);
          }
         
          ?>


21:00
3. Juni 2008


Michael Oeser

Admin

posts 630

10

smilepak said:


There is one issue I am still puzzle with and trying to figure out. It has to do with Internet Explorer 7.0 viewing the page. Upon viewing the page, it will display fine. The minute you hover over the menu bar, the page background shrink, causing the content to bleed. Anyone got a clue on that one?


Let me know if you have any questions.

KN


This is a known bug I need to resolve but haven´t had the time yet. If someone has a solution I´m keen to get it.

19:38
3. Juni 2008


smilepak

Member

posts 25

11

By the way,


One piece of enhancement I am in the process of working on to it is an RSS feed directly into the “Feature” box in the front page left column. Should add some pretty good automatic content….

19:07
3. Juni 2008


smilepak

Member

posts 25

12

Your Website or Blog URL: http://www.knguyentu.com/wordpress/
Your themes version: Brandford 2.5.1
Your WP Version: 2.5.1


Thanks for the outstanding theme layout. It provided a great baseline.


I ponder between the Branford style layout and Wynton for awhile. So I end up using the Branford, but borrow some feature from the Wynton over. Such as the removing the main tab ui from Branford and use the Wynton lead article layout.


Another noticable modification is to the “feature-page.php”. I've made 3 copies of it, one for SAPHELPBYKEVIN page, one for PHOTOGRAPHYBYKEVIN page and last one for Document Download page.


Within that, I incorporated a loop for it to bring up post belonging to their related categories, just in case they didn't go to the sub page. If they click on the sub-page, which uses the same template, it only bring up post relating to that sub page.


I also incorporated the FCS feature I saw someone here did. I used that for the SAPHELPBYKEVIN page.


On the PhotographyByKevin page, I used the Zenfolio RSS feed plug in to randomly pull pictures from my photogallery hosting at Zenfolio.com.


While the website is still work in progress and hasn't finalized yet, I do want to share what I've done so far with the group to compare and comment.


There is one issue I am still puzzle with and trying to figure out. It has to do with Internet Explorer 7.0 viewing the page. Upon viewing the page, it will display fine. The minute you hover over the menu bar, the page background shrink, causing the content to bleed. Anyone got a clue on that one?


Let me know if you have any questions.

KN



Reply to Topic: knguyentu.com: Bradford meet Wynton
Please make sure your support question wasn´t posted (and answered) before. Please use the forums search to avoid double posts.

Guest Name (Required):

Guest EMail (Required):

Guest URL (required)

Math Required!
What is the sum of: 8 + 4        (Required)

Topic Reply:


 

About the DER PRiNZ forum

Currently Online:

7 Guests

Maximum Online: 25

Forums:

Groups: 4

Forums: 9

Topics: 467

Posts: 1869

Members:

There are 187 members

There are 240 guests


Michael Oeser has made 630 posts

Top Posters:

Daishi - 45

dnrothwell - 27

smilepak - 25

Nachhall-Texter - 19

pointysticks - 18

Administrator: Michael Oeser | Moderators: Michael Oeser, Daishi


© Simple:Press Forum - Version 3.1.3 (Build 356)  


Readers voices

  • Deine Mutter Sprüche: Klasse Artikel, die ganze Finanzwelt dreht doch komplett am...
  • bodybuilding: aufgrund dieser anleitung hab ich die featured artikel verstanden. dort...
  • bodybuilding: das ist ja mal ein super teil. bin gerade dabei anhand der anleitungen...
  • Renegado: hermosa plantilla, muy sobria y elegante, gracias. Sera una experiencia muy...
  • anne: Is there a way to make the list on the side look nested? something like this - ?...

Featured

    Get my brandnew theme WyntonMagazine - Ready for localization. Additional features.

  • WyntonMagazine WordPress theme
  • Get my theme BranfordMagazine - English, German and other languages available.

  • BanfordMagazine WordPress theme
  • Get the e-book "Sites that Soar" - New version out now More info

  • Get the e-book 'Sites that Soar'

Spenden / Donate

    Falls Ihnen meine Arbeit etwas Geld wert ist. / If you feel my work is worth a little money.


Bad Behavior has blocked 3585 access attempts in the last 7 days.