Impulse Theme Add Padding to Homepage- Desktop

I want to add padding to the Homepage.

190px on the left and right side down the entire homepage. Example attached

Hi @jmahmoud

Would you mind sharing your store’s URL so we can provide a solution for that?

This is only meant for desktop I imagine, correct?

Yes, only for desktop. See url here: https://gfashion.com/

thanks

Add the following to your theme.css file:

@media only screen and (min-width: 769px)
{
main#MainContent {
    margin-left: 190px;
    margin-right: 190px;
}
}

Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!