Remove grey space on mobile

Hey

Is there a way to remove the grey space on the left and right when viewing my site on a mobile device?

Thx in advance

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*background color on mobile*/
@media (max-width:768px){
 body {
    background-color: #ffffff;
 }
}

Best regards,
Support.

Thx a lot!

You are always welcome here :slight_smile: