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

    Hi
    I have an image, which is right aligned in desktop, but wish to align it to the centre in mobile.

    What CSS do I require?

    kind regards

    Duncan

    #885831

    Hey dweddell,

    Please try the following in quick css:

    @media only screen and (max-width: 767px) {
    .responsive .logo a {
    display: inline-block;
    vertical-align: middle;
    }
    
    .responsive .logo {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    }
    }

    Best regards,
    Jordan Shannon

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