Hello, community users of Shopify,
been having a great time and getting lots of help from just reading through all the posts made here, being able to understand more and more about my website’s code.
I have recently been posed with the design task to center all text in the footer but only on mobile screens! I understood correctly that I do this using the media queries. We are currently using the “Dawn Theme” and I simply added the centre align code line to this part of the section-footer.css file. (Marked in bold italic below)
@media screen and (max-width: 749px) {
.footer .grid {
text-align: center;
display: block;
margin-left: 0;
}
Now this works great when I resize my browser window on desktop and everything appears fine, but when I preview the theme on my actual mobile device nothing has changed!
I hope someone has had a similar issue or can help me fix this?