Viewing 1 replies (of 1 total)
  • Thread Starter saucer78

    (@saucer78)

    Found a fix, in case anyone stumbles across this in the future. Place all of these snippets in your child theme or custom CSS field to correctly format a static home page AND posts page:

    /*__________static front page: hide title__________*/
    .home.singular-page .hentry .entry-title {
             position: absolute;
             clip: rect(1px, 1px, 1px, 1px);
    }
    /*__________static front page: content fix__________*/
    .home.singular-page #content {
             width: 68.0851%;
    }
    .home.singular-page.page-template-fullwidth #content {
             width: 100%;
    }
    .home.singular-page .hentry {
             width: auto;
             height: auto;
    }
    /*__________posts page tweaks__________*/
    .hentry a {
    	display: block;
    	width: 100%;
    	height: 100%;
    }
    .hentry a img {
    	display: block;
    	margin: 0 auto;
    }
    .blog .hentry  {
    	float: left;
    	width: 23%;
    	height: 150px;
    	margin: 0 2% 20px 0;
    	position: relative;
    	overflow: hidden;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Sidebar not showing on Blog page.’ is closed to new replies.