Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #513223

    Team,

    Since upgrading my iPhone to IOS 9, the company logo, which was previously centered on mobile displays, now is so far left it runs off the screen.

    See two screen shots: the correct one taken from IOS 8 and the incorrect one taken from IOS 9.

    Can you please provide a fix? The logo needs to be centered on mobile displays.

    Thanks

    #513646

    Hey entrepreneur41!

    you are using this code:

    @media screen and (max-width: 767px) {
    .logo {
    left: 8% !important;
    }}
    

    adjust it to something like this:

    @media screen and (max-width: 767px) {
    .logo {
    left: 50% !important;
    }} 
    

    Best regards,
    Andy

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