Some Prompt Here
Cross
Custom Theme Bug Fix - Navigation alignment Posted 10 months ago
digg
delicious
stumble
reddit

It looks like the team at cre8Buzz recently made a change to the header which caused a problem with the way the navigation is displayed. This bug causes the text "Top 8 BuzzRankings..." and the navigation links to appear shifted to the right side of the page.

All themes except "Blue Rounded" are affected.

The code in the gallery has been updated with a fix for this problem. If you've made further customizations to your theme and don't want to lose them, you can easily fix this problem on your own with a simple addition to your theme.

Look for the part of the code that says:

navigation {



height:34px;
margin:0px;
}


and add "clear:both;" before the closing bracket, so that it looks like this:

navigation {



height:34px;
margin:0px;
clear:both;
}


Problem solved.

Note:If you copied the code directly from the gallery (without line breaks) it will look a bit different. The existing code will be:

navigation {height:34px;margin:0px;}



and you'll want to change it to:

navigation {height:34px;margin:0px;clear:both;}


Recent Comments

No comments yet.

Please login to comment.

Back