I would like to make a menu like on this page http://www.photographdublin.com/index.html
I can't figre out how to get the | between each navagation link.
I want my menu look just like the link above.
Example:
Home | Gallery | News
Need help with menu css
Re: Need help with menu css
Code: Select all
|
Re: Need help with menu css
Where do I add this? to the stylesheet or do I have to edit a template?
Re: Need help with menu css
That would go in a menu template, I wouldn't use the just use padding/margin in your CSS to add the space...
stands for non breaking space...
stands for non breaking space...
Re: Need help with menu css
Yeah Mark's way maybe easier for tweaking. You could make:
That way you could edit the spacing for all the bars at once without having to add nbsp to each one manually.
Code: Select all
<span class="nav_bar">|</span>
Then in CSS have:
.nav_bar {
padding-left: 5px;
padding-right: 5px;
}
Re: Need help with menu css
What folder is the menu template in and what exactly is the template called?