• Hello,

    I have a problem with my website. I have the theme The Station (Woo Themes) installed. I have the option to show a “BLog” tab on the navigation menu. The problem is that I don’t want this menu to be on the first position (left) of the navigation menu. Is there any possibility to change the position of this tab?

    I don’t know too much about WordPress…but this code can maybe usefull:

    <div id="nav">
    
    	<ul id="pagenav">
    
    		<?php if ( get_option('woo_blog_navigation') == 'true' && get_option('woo_blog_subnavigation') == 'false') { ?><li <?php if ( is_category() || is_single() || is_tag() || is_archive() ) { ?> class="current_page_item" <?php } ?>><a>" title="Blog"><span class="left"></span>Blog<span class="right"></span></a><?php } ?>
    
    		<?php if ( get_option('woo_blog_subnavigation') == 'true' && get_option('woo_blog_navigation' ) == 'true' ) { ?><?php wp_list_categories('child_of=' . get_option( 'woo_blog_cat_id' ) . '&hide_empty=true&title_li=<a href="' . get_option('home') . get_option('woo_blog_permalink') .'" title="Blog"><span class="left"></span>Blog<span class="right"></span></a>'); ?><?php } ?>
    
    		<?php $exclude = woo_exclude_pages(); ?>
    		<?php wp_list_pages('sort_column=menu_order&depth=0&title_li=&link_before=<span class="left"></span>&link_after=<span class="right"></span>&exclude=' . $exclude . ',' . get_option( 'woo_exclude_pages_main' ) ); ?>
    
    </div><!-- /nav -->

    [Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Change Hard-Coded Tab Position’ is closed to new replies.