Navigation Splitters
-
Hey, I am pretty new with using WordPress and the WordPress Community.
I have been using WordPress as a base for a project I am working on as I was recommended it by another designer who currently uses it himself for his blog. So far everything has been perfect and running flawlessly, considering I am a little rusty with my design having made a comeback after over a year.
I have been working on styling my blog, and with regards to the navigation, I would like to have a splitter in between each link. I have provided two screenshots; one of the current state, and one of the way I would like it to be displayed.
My coding for the way it currently looks is as follows:
<div id="navigation">
<div style="padding-left:10px; width:auto; height: 39px; position: relative; top:0px;"><ul class="menu">
<li class="<?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="<?php echo get_settings('home'); ?>">Home</a></li>
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
</ul></div></div>
I would like to know where in the coding I have to place the splitter image (navsplit.gif) in order for it to loop and display after every link. Any help would be appreciated greatly. Many thanks in advance!
Current State: https://img460.imageshack.us/img460/2181/currentos9.gif
- The topic ‘Navigation Splitters’ is closed to new replies.