Hello,
I was hoping someone could help me out with this, i cant work this one out.
- i want to make adjust the font size & remove the bold. Hoping to do this in the title and description.
Thanks in advanced for any help.
Hello,
I was hoping someone could help me out with this, i cant work this one out.
Thanks in advanced for any help.
Hey @Phreshcareco
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
You fix this by adding a simple line of css code.
accordion__title{
font-size: 18px !important; -> adjust size and weight according to your needs
font-weight: 400 !important;
}
goto your online store > themes > click on three dots of current theme > edit code > in leftsidebar search base.css > open it and paste the above code.
If it does, please like it and mark it as a solution!
If you need further assistance, feel free to reach out!
Regards,
Sweans
.accordion__title {
font-size: 20px !important;
font-family: sans-serif !important;
font-weight: 400 !important;
}
Hey @BSS-TekLabs , it worked great but the content is still bold? any way of changing that too?