Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #635819

    Hey,

    I’m using Enfold + child theme, and for some reason the header changes color and the logo resizes on mobile screens. It’s not supposed to, according to the settings page of the theme – could you have a look and let me know how it can be fixed?

    #635841

    Also, image galleries only shrink, the images don’t separate onto different lines on smaller devices (stays in three rows). See the link.

    #636320

    Hi,

    Could you please also provide login details to your site, so that we can have a closer look at the back end. You can place the information in the Private Content section of your reply.

    Best regards,
    Jordan

    #636627

    Sure :) Username and password attached.

    #637292

    Hi,

    I’m sorry but we can’t reproduce the issue with the header. It looks ok on mobile view, the background color is still white and the logo resizes properly. Could you please provide a screenshot of the issue? Regarding the gallery issue, please update the theme to version 3.5.4.

    Best regards,
    Ismael

    #637324

    The header issue only happens on the front page as far as I can see – see attached screencast.

    The gallery issue is still there on 3.5.4.

    #637652

    Hi,

    Logo does not shrink on my iphone and regarding background issue, please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 767px) {
    #top .av_header_transparency .header_bg {
        background-color: white;
    }}

    Best regards,
    Yigit

    #637957

    Hey,

    That CSS snippet did not solve the issue – the header’s background still turns grey when scrolling (to see it on iPhone, scroll slowly up again, and you’ll see the grey background).

    #637984

    Hi,

    Please try changing the code to following one

    @media only screen and (max-width: 767px) {
    #top .av_header_transparency .header_bg {
        background-color: white !important;
    }}

    Best regards,
    Yigit

    #639168

    That makes no difference.

    Any update on the gallery issue?

    #639637

    Hi,

    The header should not be shrinking on mobile device. Did you add any modifications to the avia.js file? Please add this in the Quick CSS Field to keep the background white on scroll:

    @media only screen and (max-width: 767px) {
    .html_header_transparency #header_meta, .html_header_transparency #header_main {
        background: #ffffff;
    }
    }

    For the gallery, use this:

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
        width: 100%;
        margin-bottom: 10px;
    }

    Place this code inside the css media query above.

    Best regards,
    Ismael

    #640271

    That worked, thanks :)

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Header shrinking logo on mobile’ is closed to new replies.