Underling in Netscape

G

Guest

I have developed a website using dynamic webplates. It is not yet on lthe
web. All links are in bold red while the remainder of text is dark blue
making the links obvious. I have been able to eliminate the underlines when
the pages are previewed in Internet Explorer but the underlines remain on
Netscape. How do I resolve this?
 
M

Murray

Show me the code on the page, please. Bold red on dark blue sounds very hard
to read....
 
A

Andrew Murray

Style sheets....

Put the following in your page(s) in the <head> section.

a:link { font-size: 10pt; color: #0078AA; font-family:Arial;
font-weight:bold; text-decoration:none }
a:hover { font-size: 10pt; color: #FF0000; font-family:Arial;
font-weight:bold; text-decoration: underline}
a:active { font-size: 10pt; color: #CC3300; font-family:Arial;
font-weight:bold; text-decoration: underline }
a:visited { font-size: 10pt; color: #808080; font-family:arial;
font-weight:bold; text-decoration: underline }

Choose your own colours, fonts etc.

Else change the link colours in Page properties.
 
M

Murray

Try this for a streamlined stylesheet (and it's very important to use this
order, too, so that you get the right 'cascade' of styles) -

a { font-size: 12px; font-family:Arial; font-weight:bold;
text-decoration:underline }
a:link { color:#0078AA; text-decoration:none; }
a:visited { color: #808080; }
a:hover { color: #F00; }
a:active { color: #C30; }

And, never use points for the web, since they are designed for paper output.
Use pixels, ems, ens, exs, percents, or font size names (as well as the +/-
sizes), which are all for the screen.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top