Issue with menu on mobile version

Hello everyone!

I have been trying to
solve this issue but I'm stuck!

The layout is perfect on
the computer but on iPad and iPhone, the logo is super small and the menu overlaps
the image. On iPad I can’t even see the fancy header “welcome”. 

The good one

ipad with photo cut and the header

iphone, very small logo

I tried to change every
option, nothing changes. 

www.artcmiami.com 

I would really appreciate some help here :)

Thank you,

Caroline 

Comments

  • Hi,

    to make this logo larger on mobile devices, please use below css:
    @media only screen and (max-width: 1239px) {
       
        #Header_creative #Top_bar #logo img { max-height: 300px; }
       
    }

    @media only screen and (max-width: 767px)  {

        #Header_creative #Top_bar .logo #logo img { max-height: 350px; }
       
    }
  • thank you! the logo is now bigger.
    On iPhone it's perfect.
    On iPad it is not quite good,the header "welcome" still doesn't show. and the menu is on top of the picture. see below:

    Do you have for that too?
    thank you
  • But what should be done in your mind in this case? Because if you use such a tall logo this is all we can do in this case.
  • well i don't understand why the fancy header isn't showing up on the iPad, when it does on the iPhone..
  • Where this fancy header exactly is? Please show us what you mean because we really don't know.
  • check on the computer, it has looks like that: good layout
    it shows well now on iPhone: see here
    and on the iPad the fance header "welcome" disappear. and the picture is cut see here

    Do you understand better now?
  • Ok, we see what you mean now. Please use below css as this should help in this case:
    @media only screen and (min-width: 960px) and (max-width: 1239px) {
        #Content { margin-top: 340px; }
    }
  • thank you. I will check on the iPad when i get back.
    Also I was trying to put my twitter link but I can't find the right path. Can you tell me how to do that?

    thank you
    I really appreciate your help and quick answer, great support team!!
  • Can the menu button, on mobile version, be under the logo? next to the search bar
    that would look so much better
  • Each link for external services like Twitter must start with http://

    To move button menu under logo on mobile, please use below css:
    @media only screen and (max-width: 767px) {
        #Top_bar .menu_wrapper {
            float: none;
            padding-top: 40px;
            position: relative;
        }
        #Top_bar a.responsive-menu-toggle {
            width: 100%;
            right: 0;
        }
        #Header_creative #Top_bar .responsive-menu-toggle {
            top: 0;
        }
    }
Sign In or Register to comment.