Hi there,
I have quite a lot of text on my page, I would like to reduce the white space on the left and right on mobile view throughout the site so there are less lines to scroll through on mobile. Don’t think my css below is right, could you tell me how to do this?
@media only screen and (max-width: 480px) {
margin: 0px !important;
}
Thanks for the help.
Hi janicenisha!
use this code in Quick CSS field:
@media only screen and (max-width: 767px) {
.tabcontainer {
width: 119%;
left: -29px;
}}
and adjust as needed.
Regards,
Andy
Hey Andy
Thanks for this. It works great. If I wanted to reduce the left and right whitespace all throughout the site on mobile, how do I do this?
Hi,
Not sure I understand what you are looking to do there, could you post screenshots of the margins/whitespace you would like to remove please?
Best regards,
Rikard
Hi Rikard,
I was trying to get the overall content to take up a bigger space left and right on mobile. But no worries, this somehow worked. Default was 85%, I changed it to 90%.
.responsive #top #wrap_all .container {
width: 90%;
max-width: 90%;}
Thanks