Archived topic
How to Show Background on Tablet and Phone?
3 replies · Started by Alirio on July 31, 2019
I have a light color background and white container. On desktop, you can see white container and the background on the sides. However, on tablet and phone, I can only see the white container. How can I display the background and the container on tablet and phone? I just want to show a little bit of the background on the sides.
Thank you,
Rio
Hi there,
you could use a little CSS to add some margin to the content like so:
@media (max-width: 910px) {
#content {
margin-left: 10px;
margin-right: 10px;
}
}
Thank you, Dave!
Glad to be of help