Change font size in footer and underline links

Hi! I am trying to decrease the font size in my footer, as well as remove the underlines from the links, I still want them to be links, just not have the underline/hyperlink showing, if that makes sense. Can anyone help?

www.westmichiganballoons.com no pw

Thanks so much

No problem. Please specify the font size in your theme.css file. Find .footer__content-top .grid and add font-size to the code. Should look something like below.

.footer__content-top .grid {

font-size: 13px;

}

Hi @lisahiggins ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/section-footer.css->paste below code at the bottom of the file:
.footer-block__details-content p {
    font-size: 14px !important;
}

.footer-block__details-content a,
.footer-block__details-content a span {
    text-decoration: none !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

That worked thank you so much!