is there a way to move the top navigation bar to place it under the header image? thanks for any help.
is there a way to move the top navigation bar?
(6 posts) (2 voices)-
Posted 3 months ago #
-
You can add the navigation code just above the following line in header.php.
<div id="contentcontainer">I recommend you to try this on local or demo site before updating the files on your live site.
Posted 3 months ago # -
i'm not sure i'm getting what i need to do.
on this site, http://rebelliouspeople.com/, the navigation links at the top right hand side, i would like to move that down below my blog title. so it would fall right in between my log and the first post. thanks for any help.
Posted 3 months ago # -
You can cut and paste the following code just above the code mentioned earlier.
`
<ul>
<li><a href="<?php bloginfo("home"); ?>/" title="home">Home</a></li>
<?php
$top_page_defaults = array(
'depth' => -1,
'show_date' => '',
'date_format' => get_option('date_format'),
'child_of' => 0,
'exclude' => '',
'title_li' => __(''),
'echo' => 1,
'authors' => '',
'sort_column' => 'menu_order',
'link_before' => '',
'link_after' => '',
'exclude_tree'=> top("exclude_pages_topnav") );
wp_list_pages($top_page_defaults);
?>
</ul><!-- /toplinks -->
`I hope this will help, if not please let me know if you face any issues.
Posted 3 months ago # -
it does seem to move the navigation. how would i go about formatting it. it shows the navigation as a list instead of side by side.
Posted 3 months ago # -
You can update the styles in style.css file located in the theme folder.
Posted 3 months ago #
Reply
You must log in to post.
not resolved