I've noticed this problem that my secondary links are not showing. I also saw someone else having a problem that's most probably similar to mine here: http://drupal.org/node/198484
When using my browser to search for the menu item names, they were indeed there in the header, but both the background and foreground are white, hence unnoticeable if you don't look for them. This is probably so because of the settings from style.css with this line around line 76
#page .secondary_links .links{color:#fff;float:left;height:35px;padding-left:10px;padding-right:10px;width:auto;}
and
#page .secondary_links{clear:both;height:35px;width:auto;}
Now... the problem is that there should be other details, background images, etc... that are there in the CSS file, but not taking effect.. Why? Well looking further, I found the 4 lines that should be called (well, 2 of them only)
body.left #page .secondary_links{float:right;}
body.right #page .secondary_links{float:left;}
body.left #page .secondary_links .links{background:url("images/bg-secondary-links.jpg") no-repeat left top;}
body.right #page .secondary_links .links{background:url("images/bg-secondary-links-right.jpg") no-repeat right top;}But they are not being used because apparently i'm using body class="both", and not left or right...
Changing it to left did the trick on Firebug, although looked out of place with the content but that's not a big problem..
This is strange.. Line 8 of index.tpl.php print $layout; "> is spitting out "both" instead of "left" or "right".
Comments
Comment #1
jacineHi xushi,
This theme only supports either a right or left layout. If your body class says both anywhere other than the blocks page, this means you have content in both the left and right region. Check the blocks in the administration area, and make sure that you only have blocks in either the left or right regions (not both).
Hope that helps :)