Forum Moderators: not2easy
added
¦ Home ¦ Contact ¦ About ¦
3 different images, text for 'Home' different color
[edited by: SuzyUK at 11:05 am (utc) on June 30, 2007]
[edit reason] No images/samples per guidelines [WebmasterWorld.com] [/edit]
First, of course, you need three images, let's say home.jpg, contact.jpg, and page.jpg. Then you have to create a style sheet. Of course, the specifics of the style would be adjusted to your site.
ul { display:inline; padding; 2px; font-family:arial,sans-serif;text-align:center;border: thin solid #000;}
li.home { background: url(home.jpg; color:#F00;}
li.page { background: url(page.jpg; color:#000;}
li.contact { background: url(contact.jpg; color:#000;}
Then the HTML
<ul>
<li class=”home”>Link Text</li>
<li class=”page”>Link Text</li>
<li class=”contact”>Link Text</li>
</ul>
And that’s the basics.
Marshall