Skip to main content

How to change top and bottom spacing?

Written by Irek Khasianov

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 {
padding-top: 20px !important;
padding-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 {
padding-top: 20px !important;
padding-bottom: 20px !important;
}
  • Step 4: Save changes

Did this answer your question?