border=0 not working in table
-
I have a table in my header file that I can’t turn off the border. I’ve been trying all sorts of permutations to not have my border show up on my table but I can’t seem to get it. My site is The Call Movie.
My style.css file contains:
#logotable{ width: 100%; border: none; border-collapse: collapse; border-spacing:0; }
And my header.php file contains:
<div class="grid_6 alpha"> <div class="logo"> <table id="logotable"> <tbody> <tr> <td width=400px><a href="<?php echo home_url(); ?>" alt="<?php bloginfo('name'); ?>"><logotext>THE CALL</logotext></a></td> <td><tagline>"Empowering kids to make<br>healthy, tobacco-free choices."</tagline></td> <td id="FBTsocialTop"><a id="facebookTop" target="_blank" href="https://www.facebook.com/THECALLmovie"></a><a id="twitterTop" target="_blank" href="https://twitter.com/THECALLmovie"></a></td> </tr> </tbody> </table> </div> </div>
Any thoughts on what I’m missing or doing wrong?
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘border=0 not working in table’ is closed to new replies.