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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding tables with css

Status
Not open for further replies.

DataSpy

Technical User
Nov 15, 2002
39
0
0
US
I'm using css to to show borders on table but don't want the table nested in that table to show. I've looked around on the net quite a bit and can't find any example of what I'm looking for.

Basically I don't want the nested table inside the navigation bar to show and the nested table inside the search to show. You'll understand once you see the page!


Any help is greatly appretiated, thanx in advance!!!
 
I'm not 100% understanding you I don't think. If you don't want that table that currently has class="hide" not to show, just do this in your CSS:

Code:
table.hide {
[!]display:none;[/!]
}

Then you can remove class="hide" on your <td>s in that table and delete this code from your CSS:

Code:
td.hide {
border-style: none
}

<.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top