Hi,
I’m trying to centre align the first image on this page on a mobile device - http://staging.dwanedigital.co.uk/web-design/
I have marginless columns turned on so I have added some space to the left-margin.
I have tried this custom element CSS to remove this margin on a mobile device but it doesn’t appear to be working for me.
/* Mobile Center Align */
@media only screen and (max-width: 767px) {
$el {
display: inline !important;
margin-left: auto !important;
margin-right: auto !important;
}
}
Thanks!