|
Posted by Beauregard T. Shagnasty on 01/10/06 21:57
johnsonholding@yahoo.com wrote:
> Ok, I believe I have figured it out. If there is anyone out there
> that's sees something amiss, please let me know, I don't know how to
> debug this stuff yet, so I flying by the seat of my pants right now :
>
> <style type="text/css" >
> BODY { font-family: verdana, ariel, serif }
/* ariel is spelled arial; serif should be sans-serif (same style as
arial) and google for why Verdana is a bad idea. */
> a {
> background-color: transparent;
> color: #ffffff; /* white */
> font-size: 9;
9 what? hot dogs? Remove the font-size and assign it in the body
selector, using: ( font-size: 100%; } Only assign different sizes for
headings (larger), and legalese (a bit smaller).
> }
> a:link {text-decoration: none;
> background-color: transparent;
> color: #ffffff; /* white */
> }
> a:visited {
> background-color: transparent;
> color: #800080; /* purple */
> }
> a.focus {
> background-color: #554433;
> color: #3399cc;
> }
> a:hover {text-decoration: underline;
> background-color:;
> color: #000000;
} <-- this brace needs added
> a:link {text-decoration: underline;
> color: #000000;
> background: transparent;
> }
} <-- this brace needs removed and may cause a browser to ignore the
entire style sheet
> </style>
> </head>
White links are a very bad idea. Visitors are used to seeing blue links
(unvisited), purple links (visited). Since you didn't assign a body
background color (default normally white), your links would be
invisible.
I got your contact form submission, replying here.
--
-bts
-Warning: I brake for lawn deer
Navigation:
[Reply to this message]
|