• Hello,
    I am trying to round the borders on my blog. I was able to do that, but now trying to round the actual table so the borders don’t look chopped. I also would like space between the sidebar and footer/copyright area. I have a customized theme. I am not sure where to even look for that. The blog is http://caffeinatedandcreative.com/ Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • anonymized-13749270

    (@anonymized-13749270)

    Use this custom CSS to your custom CSS file (jetpack, or this plugin or your functions.php file):

    .content .entry,
    .site-footer .wrap,
    .sidebar .widget {
    	background: transparent;
    }
    .content,
    .site-footer,
    .sidebar {
    	border-radius: 19px;
    }
    .sidebar {
    	margin-bottom: 1.5em;
    }

    Change 19px (line 9) to your desired measures.

    Thread Starter speryea

    (@speryea)

    Thank you soooooo much!

    anonymized-13749270

    (@anonymized-13749270)

    Glad to hear it worked, you are welcome !!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Borders and CSS’ is closed to new replies.