I had created this section of blog post using Shopify Sidekick AI by giving prompt - in the preview beside the prompt it is showing perfect layout but when I save the section and see the output on live website then it is showing up like this (image attached below). How to fix this? My theme is Atelier 2.1.6
Topic summary
A user created a blog post section using Shopify Sidekick AI that displays correctly in the preview but breaks when saved and viewed on the live website. The layout issue appears to affect centering and full-width display.
Current Status:
- Theme: Atelier 1.6
- Issue includes an attached screenshot showing the broken layout
- Two community members have responded requesting the store URL and password (if password-protected) to investigate further
Next Steps:
- User needs to share store URL and access credentials for troubleshooting assistance
- Discussion remains open pending this information
Hi @raridesign
Kindly provide your store URL please and if it is password protected, please share the password as well.
Thanks!
Hey @raridesign,
In order to center the content of the blog post page and make it full width then you need to follow these steps.
Go to Shopify Admin >> Online Store >> Themes >> Customize >> Click on Rari Journal page >> Click on the first Blog of any Blog post >> Then inspect the specific section >> Click on that and right side scroll down and you will see a option name by Custom Css.
In the custom css paste the following code below.
.section.section--page-width.color-scheme-1 {
padding-top: 0px;
max-width: 100%;
width: 100%;
margin: 0 auto;
}
.shopify-block {
width: 100%;
}
article {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
After pasting this in the Custom Css input then you will get this results.
Here is the visual explanation on how to find the custom css settings in the theme customizer.
I hope that’s clear. If you still have any confusion or any Question then feel free to let me know.
And yeah, if this was helpful don’t forget to like it and Mark as Solution.
Thanks
Hey @raridesign,
I want to know whether the above Solution works for you?
Hey @raridesign
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
div#shopify-block-AaTI5TnZTWlhyNFU5K__ai_gen_block_10bfc46_G9MBkY {
max-width: 100% !important;
width: 100% !important;
}
.ai-blog-post-content-aati5tnztwlhynfu5kaigenblock10bfc46g9mbky {
max-width: 100% !important;
}
header.ai-blog-post-header-aati5tnztwlhynfu5kaigenblock10bfc46g9mbky {
text-align: -webkit-center !important;
}
</style>
RESULT:
If you require any other help, feel free to reach out to me. If I managed to help you then a Like would be truly appreciated.
Best,
Moeed
Thank you, your solution helped me and now the blog post is looking exactly same what I wished to.
Thank you for your reply. I’m glad to hear that the solution worked well for you. If you require any more help, please don’t hesitate to reach out. If you find this information useful, a Like would be greatly appreciated.
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
div#shopify-block-AaTI5TnZTWlhyNFU5K__ai_gen_block_10bfc46_G9MBkY {
max-width: 100% !important;
width: 100% !important;
}
.ai-blog-post-content-aati5tnztwlhynfu5kaigenblock10bfc46g9mbky {
max-width: 100% !important;
}
header.ai-blog-post-header-aati5tnztwlhynfu5kaigenblock10bfc46g9mbky {
text-align: -webkit-center !important;
}
</style>
type or paste code here




