Not a web host site ... but suggestions appreciated

webfreak08 said:
One suggestion...make a hover link effect with CSS for the menu. It will make the visitors to your page certain what item they are selecting.

Another good suggestion ... thanks. I think I sort of did it right. At least when you cursor over a link now, it turns from blue to red :)

Thanks again
Peter
 
Peter, delete the section that you made the style in and input the following code in your stylesheet that I see you have:
a:link {color: blue; text-decoration: underline; }
a:active {color: blue; text-decoration: underline ; }
a:visited {color: blue; text-decoration: underline; }
a:hover {color: red; text-decoration: underline; }
You can change the color or the text-decoration to "none" if you want. Make sure that you maintain the exact order of the properties. If you do not, it might not work correctly.
 
Marc ...

I got it wrong first time (big surprise :) ) But thanks for your coding ... might use it yet :)

I just got reminded why I really do not like FrontPage. You know they have 4 danged CSS files for the theme I am using??? And each one had to be modified. I gotta go back to hard coding I think LOL :) (as if thats going to happen ... hahaha)

Thanks again
Peter
 
To create my website, I'm using Notepad, HTML and CSS. I don't use FrontPage or any other WYSIWYG editor. I am working on a major improvement of the site that is on marcfulmer.com now.
 
Last edited:
FrontPage is OK I guess ... especially for someone like me with "on again, off again" brain functions. If I suddenly forget everything I know about web design ... FrontPage is idiot proof enough that I can still manage my websites :)

I got pretty good at hard coding ... but then one day my brain farted and I forgot everything. Even forgot my name for a few days. So with FrontPage I can sort of bluff my way through any changes and it comes out OK. Luckily ... my brains indigestion isn't quite as bad these days :smilie3:

Peter
 
Dang it ... You change one thing and something else messes up :) Story of my life hahahaha :)

Thanks for letting me know ... should be fixed now.

Take care
Peter
 
Back
Top