Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1433939

    The header on all Blogs gets cut off. Can I get a code to adjust all of these? Thanks

    #1433979

    Hey bemodesign,

    I’m not sure if I can see the problem on my end. Could you post a screenshot highligting the problem please? Also please let us know in which browser you are seeing it in.

    Best regards,
    Rikard

    #1434124

    It’s on Mobile view. The header gets cut off.

    #1434192

    screenshot

    #1434252

    Hi,

    Thank you for the update.

    Have you added the following css code? It removes the padding above the main container, causing the header to overlap with the heading.

    .responsive #top #main {
        padding-top: 0 !important;
        margin: 0;
    }

    You can override it by adding this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 100px !important;
      }
    }

    Best regards,
    Ismael

    #1434254

    Thanks! done!

    #1434285

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1434365

    Wait, I had to take that code off, because it made a space on all the mobile pages. I just needed the Blog pages adjusted. Did you see that link? https://drive.google.com/file/d/16cOVLA62oSIYmc38xDluQMaPyNt0Ao_c/view?usp=sharing

    #1434389

    Hi,

    Please try this CSS instead:

    @media only screen and (max-width: 767px) {
      .single-post #main {
        padding-top: 100px !important;
      }
    }

    Best regards,
    Rikard

    #1435330

    I have this same issue with another website that is similar to this one. All the “regular pages”, “blog” and “products” that don’t have “transparent header”, get cut off at the top ON Mobile view. The home page looks great, but I need all the other pages to not have the top get cut off. Any CSS for this?

    see screenshot

    #1435332

    Just to add a note, these issues are just on Mobile view. If I have a page that uses Transparent Header, it looks fine, but not all my pages will have this. See attached link for a page that has transparent header.

    • This reply was modified 5 months ago by bemodesign.
    #1435403

    Hi,

    You can add this css code to adjust the top padding of the main container based on the header layout.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
    
      .responsive #top #main {
        padding-top: 88px !important;
      }
    
      .response.html_header_transparency #main {
        padding-top: 0 !important;
      }
    }

    This should apply an 88px top padding on pages with header transparency disabled.

    Best regards,
    Ismael

    #1435820

    thanks, looks like that worked

    #1435847

    Hi,

    Great! Glad to know that the suggestions worked. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘enfold adjust height of header on blog’ is closed to new replies.