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
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