• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net

Simple Rollover Question

hydrashock

New Member
If you use FP you probably know that it has problems with taking the underlining off of links. It just won't allow it.

And the way I want my links to be is one color of regular text, no text decoration, and, when the user rolls over it, it changes to another color, again with no text decoration.

What is the HTML or CSS that I need to put in to do this? As far as I can tell FP will not create links without text decoration in their normal state.

If this post is confusing let me know I'll reword it. Thanks.
 
Make your page in frontpage, then open it in notepad and put this somewhere in between <head> and </head> :
Code:
	<style type="text/css">
		<!--
		a:link {color: 111111; text-decoration: none }
		a:active {color: 222222; text-decoration: none }
		a:visited {color: 333333; text-decoration: none }
		a:hover {color: 444444; text-decoration: none }
		-->
	</style>
Replace 111111 with the hex code or name of the color you want the regular link to be, 222222 with the hex code or name of the color you want the link to be after the user clicks on it and the dotted line thing is around the link, 333333 with the hex code or name of the color you want the links someone has visited to be, and 444444 with the hex code or name of the color you want the link to be when you put your mouse over the link but dont click.

I hope I explained this well :)
 
Search and learn CSS

Css is a great way to get the most out of how you want your site to look....
 
Back
Top