Dear Community
I would like to reduce the indentation of the margins throughout my website. I am using the Prestige theme.
Can someone help?
Dear Community
I would like to reduce the indentation of the margins throughout my website. I am using the Prestige theme.
Can someone help?
To reduce the indentation of margins throughout your Prestige theme website, you can make adjustments to the CSS code. Here’s a general approach to achieve this:
Note: The file name may vary slightly depending on the version of the Prestige theme you’re using.
margin, padding, or specific class names associated with margins..my-selector {
margin: 20px;
}
You can modify it to:
.my-selector {
margin: 10px;
}
Alternatively, you can remove the margin by setting it to 0:
.my-selector {
margin: 0;
}
Repeat the process for other sections or selectors where you want to reduce the indentation.
After making the desired changes, click on the “Save” button to save the modified file.
Preview your website to see the updated indentation. If you’re satisfied with the changes, click on the “Publish” button to make the changes live on your website.
Remember to review and test your website thoroughly after making any modifications to ensure that the changes have the desired effect and do not negatively impact the overall layout and user experience.
@NomtechSolution Thank you for you’re reply!
Can you help me find the correct part in the code?
Hello There,
#shopify-section-sections--18945963721000__footer .footer {
padding-top: 30px;
padding-left: 90px;
padding-right: 90px;
}
.header{
padding-top: 30px;
padding-left: 90px;
padding-right: 90px;
}