Hello,
Does somebody know how we can adjust our announcement bar? We want it smaller for desktop and mobile.
URL: https://excitarestudios.com/
Greetz,
Joa
A user seeks to reduce the size of their announcement bar for both desktop and mobile versions of their Shopify store.
Initial Solution Attempted:
base.css file targeting .page-width.utility-bar__grid classesAlternative Solution Provided:
base.cssul.list-unstyled.list-social, utility bar grid classes, and slideshow-component.announcement-bar!important flagStatus: The discussion remains open with no confirmation whether the second solution resolved the issue.
Hello,
Does somebody know how we can adjust our announcement bar? We want it smaller for desktop and mobile.
URL: https://excitarestudios.com/
Greetz,
Joa
In order to make the announcement bar small then you need to paste the following code in the end of base.css file.
.page-width.utility-bar__grid.utility-bar__grid--3-col {
width: 65%;
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
}
You can adjust the width based on your requirements.
Does not work
You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file
ul.list-unstyled.list-social,
.page-width.utility-bar__grid.utility-bar__grid--3-col,
slideshow-component.announcement-bar {
height: 30px !important;
}
Result
Best,
DaisyVo