- This topic has 3 replies, 3 voices, and was last updated 6 years, 8 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
Support › Forums › Flex Theme › Increase body width
Hi support,
The body width seems to be very narrow on mobile devices. See screenshot: http://prntscr.com/8d44z6 Can you please guide me how to increase it?
Regards,
You need to modify the @media queries from style.css file. Reduce the left and right padding.
In style.css file after…
@media only screen and (max-width: 800px) {
Add following code…
.wrap,
.boxed .site-container,
.boxed .site-top .wrap {
padding: 0 5px;
}
Thanks so much. I mark as resolved.