Rollover
Hello,
Im doing something wrong. If you take a look at the text on the bottom, i was curious how to make those grey links with red rollovers. I cant seem to get it right. Im trying to use CSS but its not working right. Take a look at http://www.wsdspecialist.com/grassvalley/
Does anyone know what i can put in there to make it work? Thanks in advance
------------------
Adam
[email protected]
C&C Wireless- For all your wireless needs!
Best Regards,
Adam Lee
DigitalONE Design
President - Internet Division
[email protected]
digitalonedesign.com
AndyB posted this at 23:41 — 28th June 2000.
They have: 344 posts
Joined: Aug 1999
Originally posted by Suzanne, slightly modified here:
Use one CSS class for the 'normal' links on the left, and a different class for the links at the bottom
So for the *special* links with a different colour HOVER (which is IE 4+ and NN 6+ only), you would use a CLASS...
<a class="redhover" href=""></a>
And in the CSS
a:hover.redhover {color: red;}
bilbong30 posted this at 23:45 — 28th June 2000.
They have: 406 posts
Joined: Feb 2000
hmm..im kinda confused sorry What i want is that bottom text to be #CCCCCC. When you mouseover it, it turns to #FFOOOO. Im kinda confused how to do this in style sheets. Is there anything i can just enter in to my html to do this?
------------------
Adam
[email protected]
C&C Wireless- For all your wireless needs!
Best Regards,
Adam Lee
DigitalONE Design
President - Internet Division
[email protected]
digitalonedesign.com
Arielladog posted this at 00:57 — 29th June 2000.
They have: 122 posts
Joined: Jun 1999
What he means is this:
first you add this into your head.
<style>
A.bottomnav:hover {font-family : "Arial, Helvetica, sans-serif"; color: #ff0000
}
A.bottomnav { font-family : "Arial, Helvetica, sans-serif"; color : #cccccc;
}
</style>
then in your body you would have:
<a href="somepage.html" class="bottomnav">Go Here</a>
Moderate at JavaScriptCity Forums
bilbong30 posted this at 01:02 — 29th June 2000.
They have: 406 posts
Joined: Feb 2000
Thanks guys! I got it now
------------------
Adam
[email protected]
C&C Wireless- For all your wireless needs!
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.