Accordion drop down text size and font weight - DAWN THEME

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.

1 Like

Hey @Phreshcareco

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

Hi @Phreshcareco

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

  • Here is the solution for you @Phreshcareco
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
.accordion__title {
    font-size: 20px !important;
    font-family: sans-serif !important;
    font-weight: 400 !important;
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.
1 Like

Hey @BSS-TekLabs , it worked great but the content is still bold? any way of changing that too?