• hello all

    menu bar is only showing half my catecories (one row) need it to show all 2 or three rows any ideas?

    Pages as well only the one row need to show two rows ther as well

    please help

    regards
    brent

Viewing 5 replies - 1 through 5 (of 5 total)
  • 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.

    Thread Starter brentmik

    (@brentmik)

    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.

    Thread Starter brentmik

    (@brentmik)

    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>

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘menu bar’ is closed to new replies.