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
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:
.scrolling-content__item in theme.liquidInitial 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.
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
Hello @FebruaryBloom
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
Result:
my reply helpful? Click Like to let me know!
your question answered? Mark it as an Accepted Solution.
Hey @FebruaryBloom
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
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
.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
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 ![]()
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!
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.