CSS Navigation Question
-
Hello I am using a twenty ten child theme and would like to make my navigation look something like this:
http://www.designdeck.co.uk/a/1215
What I would like to know is if I can create this using css alone or if there is a easy way in achieving this outcome.
I had considered adding a background gradient image to my #access and somehow adding a divider in between each nav text element.
Any thoughts?
I appreciate any help greatly.
-
What I would like to know is if I can create this using css alone or if there is a easy way in achieving this outcome.
CSS alone is the easy way thanks to generators http://www.colorzilla.com/gradient-editor/
and somehow adding a divider in between each nav text element.
Use a left and right border instead, then remove the left border on the first and right on the last elements.
Thank you so much!!
I just have one more question.
If you see the website Im working on there is a left and right divider in each one except before the home | button. I would like for there to be one there too. How can I achieve this?
Thanks in advance for all your help.
Try;
#access .menu-header li { border-left: 1px solid #DBD9DA; }Perfect! Thank you, this will come in handy for years to come! 🙂
The topic ‘CSS Navigation Question’ is closed to new replies.