Not been to center the section which I created using Sidekick


why is the section not taking the full width of the page, kindly help me, this is created using side kick

@raridesign it must be having fixed width and margin set to it, can you please share this page link?

Hi @raridesign,

Go to Online Store β†’ Theme β†’ Edit code.
2. Open your theme.css / based.css / style.css file and paste the code in the bottom of the file.

.ai-product-reviews__container-awhhhshloohnpm29fsaigenblock45ae8f87qn6bk {
    max-width: 1600px !important;
}

Thanks!

Hey @raridesign

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above </ body> tag
<style>
.ai-product-reviews__header-awhhhshloohnpm29fsaigenblock45ae8f87qn6bk {
    text-align: -webkit-center !important;
    justify-items: center !important;
}
</style>

RESULT:

If I managed to help you then a Like would be truly appreciated.

Best,
Moeed

Hi @raridesign
You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code before the </head> tag

<style>
.ai-product-reviews__container-awhhhshloohnpm29fsaigenblock45ae8f87qn6bk {
    max-width: 100% !important; 
    padding: 0 !important; 
}
</style>

Results:

Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!