How do I get a forward slash into a menu?

Permalink
Hi folks, I hope someone can help. The css menu I have designed uses a coloured forward slash to visually separate each menu item (see attached file).

Can anyone tell me how to achieve this effect in concrete5? I don't have a clue where I would add the html code that I used on my dreamweaver file –
<li><a href="#" title="Homepage">Homepage</a></li> <span class="style3"> /</span>
<li><a href="#" title="About Us">About Us</a></li> <span class="style3"> /</span> – style3 formating was in the style area at the top of each page.

Any help much appreciated as the menu looks dreadful without the orange forward slash.
Thanks,
John

1 Attachment

 
12345j replied on at Permalink Reply
12345j
copy root/concrete/blocks/autonav/view.php to root/blocks/autonav/templates/ and rename it to slash_template.php (you will have to make some of the path. Then open the file up and replace on line 51
echo("</li>");

with
echo("</li><span class=\"style3\">/</span>");
DanK replied on at Permalink Reply
Thanks for the reply but I'm not following you I'm afraid. I don't understand what you mean by "you will have to make some of the path". I've done what you suggested other than that but it's not working.

Apologies for my lack of knowledge on this but I'm new to concrete and I'm trying to find my way.
12345j replied on at Permalink Best Answer Reply
12345j
hey, if you can send me a pm with the ftp details I can do it for you.
Otherwise- you need to create the folder autonav inside root/blocks, and a templates folder inside autonav. then copy the file from root/concrete/blocks/autonav/view.php to root/blocks/autonav/templates and rename it(for this example ill use test). Make the changes I showed above, and then put your site in edit mode and select custom template. Then select "test" as the custom template.
DanK replied on at Permalink Reply
It worked! Thanks so much for your help (and kind offer to actually do it for me). Fantastic help, really appreciated.
John.