Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1270442

    momentabodas
    Participant

    I can’t seem to find a way to disable the post title in single entries.

    Here’s an example: https://momenta.es/?p=76

    I can’t hide the “Alejandra” header.

    I’ve tried the following codes in customizer:

    .x-header-landmark {
    display: none;
    }
    .x-header-landmark {
    display: none;
    }
    .x-header-landmark {
    display: none;
    }
    .x-header-landmark {
    display: none;
    }

    Any help on this?

    #1270461

    Paul R
    Moderator

    Hi,

    You can try this instead.

    
    .single-post .entry-header {
       display:none;
    }
    

    Hope that helps

    #1270589

    momentabodas
    Participant

    Nice! It seemed to work I forgot to put a “}” and after the last code I entered and after that it worked.

    Just a question, how can I reduce the spacing between the menus and the content in posts? I already deleted the padding and margin in the section, column and row, but it’s still bigger that other pages.

    Any advice?

    Thank you!

    #1270621

    Joao
    Moderator

    Hi There,

    Please add

    .single .hentry .entry-wrap {
        padding: 0;
    }

    Thanks

    Joao

    #1270673

    momentabodas
    Participant

    Solved.

    Thanks!

    #1270676

    Darshana
    Moderator

    Glad we were able to help 🙂

    #1270746

    momentabodas
    Participant

    Hey! I got another question for you 😀

    1. Is there a way to reduce it a little bit more?
    2. Is there a way to reduce it too also in pages? Not only in posts.

    THANKS <3

    #1270748

    Joao
    Moderator

    Hi There,

    Please add the following code instead:

    
    .entry-content {
        margin-top: 1%;
     
    }
    
    .entry-wrap {
        padding: 0;
    }

    Thanks

    Joao

    #1270749

    Jade
    Moderator

    Hi there,

    Please add this code:

    .page .hentry .entry-wrap:last-child {
        padding-top: 20px;
    }
    
    .single-post .entry-content {
        margin-top: 20px;
    }

    Hope this helps.

    #1277534

    momentabodas
    Participant

    Is there a way to make any of this changes only visible in the mobile view?

    Thanks a lot, the code in the last post was the one which worked out!

    #1277575

    Rupok
    Member

    Hi there,

    If you want to apply the code for mobile you can place them within media query like this :

    @media only screen and (max-width: 767px) {
    
    .page .hentry .entry-wrap:last-child {
        padding-top: 20px;
    }
    
    .single-post .entry-content {
        margin-top: 20px;
    }
    
    }

    Hope this helps.