How can I change the page margin to 150px on each side?

Good Evening!!

I would like to change the margin of the following page to 150px on each side

https://www.rosekoreanbeauty.com/pages/shipping-policy

Can somebody please help me out :slightly_smiling_face:

@Andy92

yes please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
@media only screen and (min-width: 769px) {
.page-width.page-width--narrow.page-content {
    padding: 0px 150px;
    max-width: 100%;
}
}

Thank you for your reply. However, it does’nt work. Did I do something wrong?

Oh! I fixed it with the following:

@media only screen and (min-width: 769px) {
.page-width.page-width--narrow.page-content {
    margin-left:150px;
  	margin-right: 150px;
}
}
1 Like

@Andy92

great thanks for update