Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1275516

    Hi,
    can you please give me the quick CSS code to fix the problem with the burger menu going over the logo on small screen ( phone, small tablet )
    > see below screenshot
    burger-menu-over-logo-display
    Thank you in advance for your help,
    best regards,
    Stan

    #1275624

    Hey sdesign-web,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1275686

    Hey Victoria,

    please find in private content the url of the website.

    Thanks !

    Stan

    #1275706

    Hi Stan,

    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

    
    @media only screen and (max-width: 479px) {
        .responsive #top #wrap_all .container {
            width: 100;
            max-width: 100%;
        }
        .responsive .logo img {
            width: 90%;
        }
     
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
            .responsive #top .logo img {
                width: 75%;
            }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1276107

    Hello Victoria,
    thank you very much for your help !

    Your css trick solve the problem on small all vertical display such as iphone 5 etc …
    On the other hand, the problem subsists on iPad screens in landscape mode. Maybe by changing some values ​​in the css? What do you think ?

    Kind Regards
    Stan

    #1276108

    … ex :screenshot on ipad landscape mode
    Capture-d-e-cran-2021-01-28-a-18-31-27

    #1276164

    Hi sdesign-web,

    Please add this code too:

    
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
        .html_header_top.html_logo_center .logo {
            left: 0px;
            -webkit-transform: none;
            -ms-transform: none;
            transform: none;
        }
    }
    

    Best regards,
    Victoria

    #1276353

    Super Victoria! !,
    everything is working fine with your quickcss.
    Thank you for ypour help.
    have a nice we
    Stan

    #1276425

    Hi Stan,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.