|
-
Nov 5th, 2007, 04:42 PM
#1
Thread Starter
Hyperactive Member
a:hover dreamweaver css
How do i use two differenet a:hover styles, so that 1 style can underline and stay blue and the other can underline and stay white.
If your question is answered then mark your thread RESOLVED and give credit to whoever answered it.
If you fail, try and try again, its the only way to success.
-
Nov 5th, 2007, 05:00 PM
#2
Re: a:hover dreamweaver css
use two different IDs or classes....I'm guessing what you would probably want is two classes that each define their own a:hover settings.
Then in the html when you want style A, set the class of the a href... and when you want style B, set the class of the a href to the other.
-tg
-
Nov 12th, 2007, 10:05 AM
#3
Re: a:hover dreamweaver css
If im not mistaken
<a href="index.php" class="one">Blah</a>
<a href="index.php" class="two">Blah</a>
Then in your CSS you should have
css Code:
a:hover.one
{
<!-- css here -->
}
a:hover.two
{
<!-- css here -->
}
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|