PDA

View Full Version : CSS or HTML question


BAD-ASS-CJ
11-7-02, 03:48 PM
On my site i have this navagation menu thing, inbetween the HOME,LINKS,MEMBERS i have these little separaters "::" how can i change those little separators to a little image?
Here is the code for the menu:

<table width="100%" cellpadding="0" cellspacing="0" border="0" background="images/header-back.gif">
<tr>
<td><img src="images/pixel.gif" width="3"></td>
<td align="left" valign="top"><img src="images/header-left.gif"></td>
<td valign="top">
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="right" valign="top"><br><img src="images/webbanner.jpg"></td>
</tr>
<tr><td><img src="images/pixel.gif" height="10"></td></tr>
<tr>
<td align="center" valign="bottom"><img src="images/pixel.gif" height="2">&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="/" class="menu-link">Home</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="scrapbook.shtml" class="menu-link">Scrapbook</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="members.shtml" class="menu-link">Members</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="cgi-bin/ikonboard.cgi" target="_blank" class="menu-link">Forums</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="http://www.rigrater.com" target="_blank" class="menu-link">Rig-Rater</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<br>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="trails.shtml" class="menu-link">Trails</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="sponser.shtml" class="menu-link">Club Supporters</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="links.shtml" class="menu-link">Links</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;<a href="info.shtml" class="menu-link">Membership Info</a>&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table><br><br>


The website can be seen here (http://www.kingofthemountain4x4.com)

Laurey
11-7-02, 03:54 PM
Just replace these:
&nbsp;&nbsp;<span class="separator">::</span>&nbsp;&nbsp;

with something like this:

<IMG SRC="separator.gif" ALT="::">

(the alt is for those viewing with graphics turned off)

hth,
-L

BAD-ASS-CJ
11-7-02, 04:04 PM
Thanks, that works