• 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.

    http://www.allenlgreer.com

    Any thoughts?

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    Thread Starter orbital2000

    (@orbital2000)

    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.

    Thread Starter orbital2000

    (@orbital2000)

    Worked! Awesome, thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Gray border around Social Icons (in table)’ is closed to new replies.