mcrubbin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Menu separatorsGood idea. Thanks!
Forum: Themes and Templates
In reply to: Menu separators^^^ Ignore that last message.
Answer: This ended up working:
.nav li:first-child .separator { background: none; }Explanation: So I replaced my menu code with this:
<?php wp_list_pages('sort_column=menu_order&title_li=&parent=0&link_before=<span class="separator"> </span>') ;?>Then I installed: My Page Order
And organized my pages the way I wanted them.And then I styled in the separator as a image.
Since the separator is a image, I added this class specifically to the first menu item:
.nav li:first-child .separator { background: none; }YES! 🙂 THANKS GUYS!
Forum: Themes and Templates
In reply to: Menu separatorsSeems like I had the wrong code before.. I should have gave you this in the beginning instead of that other code:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <?php endif; ?>^^ That’s what displays my menu. I don’t know where to find the actual code that generates the menu.
And I added in the css that you gave me.
But…
If I do use this:
<?php wp_list_pages('title_li=&parent=0&link_before=<span class="separator"> | </span>') ;?>Is there any way to organize it? Because for me it just set it in alphabetical order with the code above.
Forum: Themes and Templates
In reply to: Menu separatorsOh, and it doesn’t reload. Well kinda I mean, when the slide changes your changes in firebug reset. Just go on another page and then test whatever you were trying to do
Btw, I did stop the timer for now.
Forum: Themes and Templates
In reply to: Menu separatorsK . I . S
I pretty much took everything out of that template and started from scratch.
Forum: Themes and Templates
In reply to: Menu separatorsReloading? Hmm…
Where do I change this code? In my header.php?
Forum: Themes and Templates
In reply to: Menu separatorsThanks for the help anyway 🙂
Forum: Themes and Templates
In reply to: Menu separatorsLook at my php code… I need to add in images between each menu item not horizontal lines?
I don’t think you read my question..
Forum: Themes and Templates
In reply to: Menu separatorsWhere do I add <hr /> in the first place?