Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #1478242

    the top of the text disappears when I narrow the window and the burger Menu appears. Why is that? Also the burger menu is aligned more to the right that the text menu. They should both be aligned to the column width. Please send code.

    #1478302

    Hey ausgesonnen,

    This CSS is causing that to happen:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 0 !important;
        margin: 0;
      }
    }

    Did you add it in Quick CSS maybe?

    Best regards,
    Rikard

    #1478336

    yes this is code that Günni sent me and I included it in quick css. So what exactly is the problem and what is the solution?

    Here again the problem:
    the top of the text disappears when I narrow the window and the burger Menu appears. Why is that? Also the burger menu is aligned more to the right that the text menu. They should both be aligned to the column width. Please send code.

    #1478375

    Bump – please also reply to this.

    #1478443

    Hi,

    The problem is that the code in question removes the default padding, and that leaves your content under the header on tablet sizes. If that is not what you would like, then please remove the code.

    Best regards,
    Rikard

    #1478448

    Please explain which code exactly is doing this?

    #1478484

    I checked again and this code does not exist in the quick CSS. Where did you find it?

    #1478490

    Hi,

    You can try to override it using the snippet I posted above then. The padding-top statement adds padding to the element in question. Try increasing it by 200 or 300 pixels for example.

    Best regards,
    Rikard

    #1478551

    I have already tried this. nothing is happening. Please see for yourself. Do you have another solution?

    #1478576

    Hi,

    You have this in your child theme:

    @media only screen and (min-width: 768px) and (max-width: 989px) {
      .responsive.html_mobile_menu_tablet.html_header_top #top #main {
        padding-top: 200px !important;
        margin: 300;
      }
    }

    Try removing the padding top argument.

    Best regards,
    Rikard

    #1478599

    I don’t know what you mean by “you have this in your child theme.” please explain

    #1478630

    Hi,

    Did you add this css in the css > layout.css file?

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

    This css rule is not in theme by default. Please move the css rule in the Quick CSS field or in the child theme’s style.css file:

    @media only screen and (max-width: 767px) {
        .responsive #top #main {
            padding-top: 200px !important;
            margin: 0;
        }
    }

    Best regards,
    Ismael

    #1478647

    Ok have done that but no change.
    Please see for yourself. Open the page and narrow the window. In the beginning all text is there, then the top disappears and in the end, when the logo is also shrunk, all the text is visible again.
    Please send fix.

    #1478713

    Hi,

    It seems to be working correctly on our end. Please make sure to purge the cache or check the site on incognito mode.

    View post on imgur.com

    Best regards,
    Ismael

    #1479070

    thats sorted now by Günni. Thank you.

    #1479095

    Hi,
    Glad Guenni007 could help, thank you Guenni007, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 16 posts - 1 through 16 (of 16 total)
  • The topic ‘column top disappears when window is narrowed’ is closed to new replies.