Re: Image...link...link color
Re: Image...link...link color
- Subject: Re: Image...link...link color
- From: Seejo Pylappan <email@hidden>
- Date: Wed, 5 Oct 2005 14:49:10 -0400
Use a CSS file to define your colors for your link eg:
a:link {
color: #111111;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #CCCCCC;
background-color: #333333;
text-decoration: none;
}
a:active {
color: #333333;
}
you can also add your body color into this so it is consistent.
Import this css file to your wo component and you dont have to do
anything else. All the links will follow the above definition.
Also Safari does handle css files correctly, so this will work in
Safari also.
On Oct 5, 2005, at 12:33 PM, Jeremy Matthews wrote:
I can remember the HTML to handle font color for specific
hyperlinks (as opposed to the entire body)
<A HREF="index.html"><B><FONT COLOR="#FFFFFF">SearchScreenButton</
FONT></B></A>
The idea here is to let hyperlinks appear as normal throughout the
rest of the doc, but I don't want users to see a blue border around
every image used for navigation. That looks bad. Of course, Safari
ignores them just fine, but everything else (FireFox, IE, etc)
doesn't.
Not quite sure how to do this in WO...
Any ideas?
Thanks,
jeremy
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden