Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1110057

    I need to add padding below the post title. I’ve tried:

    h1.post-title a {
    color: #00a9e1 !important;
    padding: 0px 0px 50px 0px !important;
    }

    The colour part works, so I know I’ve got something right. And the padding works if I set it to a number for the left and right side, but not for the top or bottom. What am I doing wrong?

    #1110085

    On the page that has the posts module, the title isn’t the correct colour.

    #1110202

    Hi,

    This is applying on the single page:

    h1.post-title a {
        color: #00a9e1 !important;
        padding: 0px 0px 50px 0px !important;
    }

    What exactly do you want to change?

    Try this instead for the resources page:

    .page-id-2150 h2.entry-title {
        color: #00a9e1 !important;
    }

    Best regards,
    Rikard

    #1111141

    Thank you. This is only the first post, there will be many future posts so we need one CSS rule to handle them all, without having to list every single page-id.

    What I am trying to do:
    1. Post – add more padding above and below title (already has blue colour)
    2. Page that lists posts – add more padding above and below title and change title to blue colour

    #1111390

    Hi m s,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .entry-content-wrapper .post-title {
        padding: 20px 20px 20px 0;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1111457

    Thank you!!! The only thing that remains is the colour of the title on the page:
    2. Page that lists posts – change title to blue colour

    #1111490

    Hi m s ,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .template-page .template-blog .entry-content-wrapper h2 {
        color: #00a9e1;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1111506

    Thank you, but that makes the title, plus all the article headings to be blue. Only the article title should be blue.

    #1112013

    Hi m s ,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .avia-builder-el-0  .av_textblock_section .avia_textblock  h1 {
        color: #00a9e1;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1112039

    Thank you.

    #1112047

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Adding padding below post title’ is closed to new replies.