How do I reduce the width of the logo bar?

Topic summary

A user seeks to reduce the width of their logo bar (marquee/scrolling content section), which appears too thick for their preference.

Multiple Solutions Offered:

Several developers provided CSS code snippets to adjust spacing:

  • Adding margin adjustments to .scrolling-content__item in theme.liquid
  • Modifying gap, margin, and alignment properties in theme.css/base.css
  • Adjusting container bleeding distance for the marquee-text element

Initial Issue:

The first solution didn’t work, and the user clarified the gap was between navigation arrows, not the logos themselves.

Resolution:

Moeed provided a targeted fix by adding padding adjustments to the specific section ID in theme.liquid:

section#shopify-section-template--23903218270546__scrolling_content_n9GMTK .section-spacing {
    padding: 0 !important;
}

This successfully resolved the issue, with the user confirming the solution worked.

Summarized with AI on November 3. AI used: claude-sonnet-4-5-20250929.

How do I reduce the size of the logo bar? Any help is appreciated!

It’s too thick for what I’d like - my website is www.february-bloom.com

1 Like

Hello @FebruaryBloom

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

marquee-text .scrolling-content__item>* { margin-inline-start: 8px !important; margin-inline-end: 8px !important; }

Result:

my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.

Hey @FebruaryBloom

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 tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hello, @FebruaryBloom

  1. Go to Online Store
  2. Edit Code
  3. Find theme.css/base.css file
  4. Add the following code in the bottom
.scrolling-content__item {
    display: flex !important;
    justify-content: start !important;
    align-items: center !important;
    gap: 0px !important;
    margin-inline-start: 0px !important;
    margin-inline-end: 0px !important;
}

Thanks!

Hello @FebruaryBloom

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme.css and paste this at the bottom of the file:
marquee-text.scrolling-content {
--distance-to-bleed: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
margin-inline-start: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
margin-inline-end: max(var(--container-gutter), 50% - var(--container-max-width) / 2);
}

Tried this but it didn’t change :disappointed_face:

So I added this and that’s good but it’s actually the gap between the arrows, not between the logos :slightly_smiling_face:

1 Like

Hey @FebruaryBloom

Keep the previous code and add this new code above in the end of theme.liquid file

section#shopify-section-template--23903218270546__scrolling_content_n9GMTK .section-spacing {
    padding: 0 !important;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Brilliant - thank you!

1 Like

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.