• Resolved .

    (@lunaelalee)


    How do I remove a huge space below post titles on blog pages just before the content starts? Since my text is right at the top in the editor I hope there might be a CSS padding or margins solution to bring the title and the content closer together.

Viewing 5 replies - 1 through 5 (of 5 total)
  • hannah

    (@hannahritner)

    Hey,
    Can you post a link?
    Thanks!

    Hannah

    Thread Starter .

    (@lunaelalee)

    Hi LunaleaLee
    Im not sure what you want to change. Does not look like huge space on my MacBook Pro.
    But if this is the case: https://curiorealm.com/january-15th-announcement/
    then put this code to your Child Theme style.css file

    OR
    Install iSmple Custom CSS plugin and put the code there.

    .single-article .post header {
        padding: 0px;
    }
    
    h1 {
        line-height: 0px;
    }
    
    OR
    
    h1.entry-title {
        line-height: 0px;
    }

    Line Height is now set to 40px, you can set it to your taste. If it does not work and

    !important

    element just behind the value: like – line-height: 0px!important;

    Hope I guessed your request right,
    Cheers
    TR

    Hey,
    You have added this css:

    .subhead {
        visibility: hidden;
    }

    remove that and replace with this css:

    .subhead {
        display:none;
    }

    Then add this css:

    h1.entry-title {
        margin-bottom: 0;
    }

    All this can be done in your theme options > advanced settings.

    Kadence Themes

    Thread Starter .

    (@lunaelalee)

    Thank you very much. Problem solved ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Huge Space Below Blog Title’ is closed to new replies.