I am working with a pre-constructed template, and the only editing capability I have is to place css elements within the main body. I am trying to hide a few <tr>'s that do not have a seperate <div> tag or anything. I'm pretty new to this... please help, if possible! thanks!
hide table row with no div in css
Collapse
X
-
If you are able to add inline CSS within the template itself, you can add this to the <tr>:
Code:<tr style="visibility:hidden;">
Code:table tr {visibility:hidden;}
Code:table tr .TRodd {visibility:hidden;}
Comment