All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hi i have added content on policies tab which is available in settings i will share screenshots as well. the content is not taking full width and when i click on customization then no option for body editting appears. I don't want to create pages for that because i want to use available feature. Kindly hep me to resolve this issue.
Solved! Go to the solution
This is an accepted solution.
can you please add this code
1. Go to Online Store->Theme->Edit code
2. Asset->/base.css ->paste below code at the bottom of the file.
.shopify-policy__container {max-width: var(--page-width) !important;}
Sorry you are facing this issue,
It would be my pleasure to help you.
Please share your site URL,
I will check out the issue and provide you with a solution here.
This is an accepted solution.
can you please add this code
1. Go to Online Store->Theme->Edit code
2. Asset->/base.css ->paste below code at the bottom of the file.
.shopify-policy__container {max-width: var(--page-width) !important;}
1. Locate the base.css File Go to Online Store > Themes > Actions > Edit code. In the Assets folder, find and open the base.css file.
2. Add the CSS Scroll to the bottom of the base.css file (or find an appropriate section if your file is organized by components) and paste the following CSS:
.shopify-policy__container {
max-width: var(--page-width); padding: 0 5rem;
}
3. Save the Changes Click the Save button at the top-right corner of the code editor. 4. Preview the Changes Go to the storefront and navigate to a page that displays the Policies Tab. Refresh the page to see the updated styles.
Hi @BoldAttire
Try this one.
.shopify-policy__container {
max-width:var(--page-width) !important;
padding: 0 5rem;
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!