I've added a table w/Social Icons to a theme I purchased. Everything aligns as well as planned, but there is a nasty gray border around the table cells. Border is set to zero, so not sure where else to look.
Any thoughts?
Thanks!
I've added a table w/Social Icons to a theme I purchased. Everything aligns as well as planned, but there is a nasty gray border around the table cells. Border is set to zero, so not sure where else to look.
Any thoughts?
Thanks!
these styles of style.css might be causing the grey border:
first:
#wp-calendar th, td { text-align: left; border-width: 1px; border-style: solid; text-align:center; padding:5px 0 5px 0; }
is probably meant to be:
#wp-calendar th, #wp-calendar td { text-align: left; border-width: 1px; border-style: solid; text-align:center; padding:5px 0 5px 0; }
and second:
#inner_content .entry .entry_content th, td { text-align: left; border-width: 1px; border-style: solid; }
is probably meant to be:
#inner_content .entry .entry_content th, #inner_content .entry .entry_content td { text-align: left; border-width: 1px; border-style: solid; }
if you change both, the grey border should be gone.
Thank you so much for the fast response. I would have never looked at #wp-calendar or #inner_content
I'll give that a try and let you know the outcome.
Worked! Awesome, thanks!
This topic has been closed to new replies.