• Hi, I am trying to reduce the notorious white space on my 20-11 homepage. I managed to do it on single posts, but home page is resisting.
    https://eurokriza.sk/

    I would like to minimize the white space below the thin gray line at the top. Any help appreciated

Viewing 3 replies - 1 through 3 (of 3 total)
  • huh? I can’t figure out which white space you refer to…

    I hope you making the changes in a child theme is this code in around line 777 in style.css

    .entry-content table, .comment-content table {
    border-bottom: 1px solid #DDDDDD;
    margin: 0 0 1.625em;
    width: 100%;
    }

    Change 1px 0 and you reduce the margin

    .entry-content table,
    .comment-content table {
    	border-bottom: 1px solid #ddd;
    	margin: 0 0 1.625em;
    	width: 100%;
    }

    using a tool such as Firebug https://getfirebug.com/ can help you to identify the involved styles.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Twenty eleven with showcase – reduce white space’ is closed to new replies.