Topic summary
A user is seeking help to adjust the font size of collection buttons on their store. They’ve shared a screenshot showing the current button appearance.
Solution Provided:
Another community member offers a CSS code snippet to modify the button font size:
.quick-add button {
font-size: 1.5rem;
}
Implementation Notes:
- Change the value from 1.5rem to any size that fits the design requirements
- This solution was previously shared in another thread by the same user
- The responder requests that solved threads be marked as resolved to help others find solutions more easily
The discussion appears resolved with a straightforward CSS customization approach.
Hey @EthanOSHOP ,
Use the CSS below, I have provided the answer in a previous thread you opened, if you have found the answers in those threads, please mark the solutions.
Change the value from 1.5 to anything that fits your requirement.
.quick-add button {
font-size: 1.5rem;
}
