How can I increase copyright caption size in Dawn theme?

We are using the Dawn Theme and having an issue with the copyright caption size. I have used multiple “solutions” from the forum to try to change the font size in the base.css file, but still not having any success in increasing the size of the font.

I have tried many variations of this CSS coding, and it will not change the size. Any suggestions would be greatly appreciated.

.footer__copyright.caption {
font-size: 18px !important;
}

@media screen and (min-width: 750px)
.footer__copyright.caption {
font-size: 18px !important;

The website we are trying to change this on is here:

https://sosnutrients.com/
}

Hi @MegansaGeek , try with:

.footer__column--info .caption{
font-size:18px!important;
}
1 Like

You could try adding this code to the bottom of section-footer.css

/* Copyright message font size change */
.footer__column.footer__column--info .footer__copyright.caption:nth-child(1) {
    font-size:18px;
}

/* Disclaimer message font size change */
.footer__column.footer__column--info .footer__copyright.caption:nth-child(2) {
    font-size:14px;
}

and, adjust font size for each section.

@MegansaGeek

yes, try

  1. Go to Online Store->Theme->Edit code
  2. Asset->/base.css ->paste below code at the bottom of the file.
.footer__copyright {
    font-size: 18px;
}
1 Like

Worked beautifully! Thank you! I was going crazy trying to get it to work today!

Thank you for responding, this also worked for me when I tried it. Thought I would let everyone know in case it helps someone else.

Thanks for responding - as the other two worked from within the Base.CSS file, I went with those, not sure if this would work or not, but I appreciate the help.