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

    Dear all,
    I created the site http://www.bancometalli1986.com and while on desktop everything works properly this does not happen on mobiles.
    Menu does not appear, first page does not fit the screen, the same happens on other pages.

    What can I do to have back the responsiveness?

    Thank you very much

    #928912

    Hey amepro,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .header_color .av-hamburger-inner, 
    #top .header_color .av-hamburger-inner::before, 
    #top .header_color .av-hamburger-inner::after {
        background-color: #b3895b !important;
    }

    Let us know if this helps :)

    Best regards,
    Nikko

    #928974

    Hi Nikko, thank you for your prompt reply.
    I wrote the above code but the only obtained thing is the menu visualization.
    Nothing changes for the pages visualization…

    I don’ t know what to do…

    #929716

    Hi amepro,

    Could you please attach some screenshots of the issue? The website seems to adjust to the screen width on my end.

    Best regards,
    Victoria

    #929735

    Hi Victoria, following above links you can see the visualization differences between desktop and mobile:

    1) Desktop
    2) Mobile

    the mobile image is cutted…

    • This reply was modified 6 years, 8 months ago by amepro.
    #930572

    Hi,

    That is quite normal because the section is trying to keep the aspect ratio of the background image while forcing it to cover the whole container. We can set the background size property of the section to “100%” or “contain” but it will probably distort the image or create spaces around the container. Which one do you prefer?

    100%:

    @media only screen and (max-width: 767px) {
    #home {
        background-size: 100% 100% !important;
    }
    }

    contain:

    @media only screen and (max-width: 767px) {
    #home {
        background-size: contain !important;
    }
    }

    Another workaround is to duplicate the section and upload or use an image that is specifically resized for mobile view. Use the sections’ Screen Options to toggle their visibility on different screen size or devices.

    Best regards,
    Ismael

    #930686

    Hi Ismael, in both cases nothing changes!!!

    #930702

    Hi, I adopted the second image only for mobile but for this it’ s impossible to go back to home because no arrow appears and menu is visible only on the home page

    #931750

    Hi,

    Did you re-save the theme options and remove the browser cache after adding the css modifications? You’re probably looking on a cached version of the page. Please post the login details in the private field so that we can test it.

    Best regards,
    Ismael

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