this is probably a css issue –
however, without a link to your site and the name of the used theme, help is not really possible.
i just installed magazine basic.
http://www.gratisverden.com
thanks
cool, can’t see any problem at the moment;
and this theme seems to automatically break into a new line(s) for extra category items and page items.
yes
but wont break to new line???
as you see on the right list off gatagoies is a lot more than shows on the bar
is there an option menu in the dashboard to set the category items to ‘all’ ?
because there is some conditional code in header.php of the theme, that restricts the number of category items to 8 if no other options are set in admin(?):
<div id="navigation">
<ul class="sf-menu">
<li><a href="<?php bloginfo('url'); ?>"><?php _e('Home', "magazine-basic"); ?></a></li>
<?php
$cats = get_option('uwc_category_include');
if($cats) {
if(strtolower($cats) == "all") {
wp_list_categories('title_li=');
} else {
wp_list_categories('title_li=&include='.$cats);
}
} else {
wp_list_categories('title_li=&number=8');
}
?>
</ul>
</div>