Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

css in netscape 6 2

Status
Not open for further replies.

aimee002

Programmer
May 29, 2001
7
US
Hi everyone. I'm sure there's a simple answer to this question, so hopefully someone can help me. For some reason, my style sheet rules (for my links) do not seem to be working inside of my tables in netscape 6. (They are working outside of the tables). Do they need to be defined inside of the table and how? Thanx alot

This is the website I am working on
 
It's because you have <center> tags nested within the <a> tags.

One way to fix this would be to put the <a> within the <center> tags...
Code:
<center><a href=&quot;index.html&quot; class=&quot;myLink&quot;>| Home |</a></center>

I wouldn't really recommend using the <center> tags though...
 
Thanx so much for your help! and for your quick response. I moved the </a> inside of the center tag and it worked.
 
There is a really good book about CSS which also has charts showing support of CSS by Internet Explorer and Netscape Navigator. It's called 'Core CSS',
ISBN: 0-13-083456-4 it has everything you need to know about CSS. And it's not very expensive either
(at least, thats my opinion) ;-)

Bobba_Fet Everybody has a right to my opinion.
E-mail me at cwcon@programmer.net
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top