Skip to main content
All CollectionsGeneralWidgets
How to change top and bottom spacing?
How to change top and bottom spacing?
Irek Khasianov avatar
Written by Irek Khasianov
Updated over 2 weeks ago

If you want to change the top and bottom spacing for carousel or spotlight widgets, you can do it with CSS styles.

  • Step 1: Open Theme Editor

    • Go to Shopify Admin > Online Store > Themes.

    • Click Customize

  • Step 2: Find "Storista Widget" block

    • Click on "Apps" located above

  • Step 3: Paste the CSS style in the Custom CSS section

.storista-feed-flex {
margin-top: 20px !important;
margin-bottom: 20px !important;
}

Update 20px to the desired spacing

If you want to change the spacing for the Stories widget, you can use this CSS code.

.storista-circles-feed-flex {
margin-top: 20px !important;
margin-bottom: 20px !important;
}
  • Step 4: Save changes

Did this answer your question?