• The tables on my site are showing (border) and I can’t figure out how to fix this so they are transparent.

    Also I am trying to remove the line at the bottom of the page (for all pages). I have tired both of the below but they don’t seem to work.

    .footer-widgets hr {
    display: none;
    }

    .blog-feed hr {
    display: none;
    }

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello, krisnic.

    Thank you for contacting us and for trying our theme. We appreciate it.

    In order to remove the border of your tables, please add this to Appearance -> Customize -> Additional CSS:

    .entry table, .entry th, .entry td {
    	border: none;
    }

    None of the codes you tried to remove the line worked because that line doesn’t belong to any of the areas the CSS you used targeted. Instead, try this:

    .container hr {
    	display: none;
    }

    Hope this helps but if you have any additional questions, feel free to ask.

    Kind regards.

Viewing 1 replies (of 1 total)

The topic ‘Tables and line at bottom’ is closed to new replies.