• HI,

    Almost got my page just how i like it but with the twentyfourteen theme, i can’t figure out a way to change the header on post title.

    Obviously with the theme, its designed to be a headline, but there is way too much red if you look at my page. https://www.gamertime.co.uk

    you’ll see all the red between posts, i just need to make it smaller

    Any help would be greatly appreciated

Viewing 6 replies - 1 through 6 (of 6 total)
  • You can try adding this rule to your custom CSS:

    .blog .hentry {
        margin-bottom: 0;
    }

    Thread Starter miked89

    (@miked89)

    I think thats done the trick, thank you ??

    One quick one, do you know how i could centre the text in the featured grid, so its complete ccentre. I have used code to gfet rid of the tags and it moved up.

    Thanks again!

    .featured-content .entry-header {
       display: -webkit-flex;
       display: flex;
       -webkit-flex-direction: column;
       flex-direction: column;
       -webkit-align-items: center;
       align-items: center;
       -webkit-justify-content: center;
       justify-content: center;
    }

    It looks a bit complicated, but only because browsers haven’t standardized yet on doing things like vertical centering.

    Thread Starter miked89

    (@miked89)

    That doesn;t seem to have worked. I don’t think it did anything.

    Thread Starter miked89

    (@miked89)

    my Custom CSS deletes most of the code when i click save. I will try child theme soon

    OK, if it doesn’t work in your child theme, you can set a fixed margin at the top of the titles instead:

    .featured-content .entry-title {
        margin-top: 17px;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Post header sizes. Help!’ is closed to new replies.