Resolved

changing size of the footer font and footer social links

Ultra Theme started by rinoa3108 Nov 3, 2019 8 replies
rinoa3108 Nov 3, 2019 · 7:19 am #13444

Hello,
Is there a way to change the font size of the footer, and also the social links on the footer? I would like to make them bigger. Thanks
Judy

Andrew Misplon Puro Nov 3, 2019 · 10:41 am #13447

Hi Judy

Customize > Theme Design > Bottom Bar to change the bottom bar text size. In Additional CSS add:

.bottom-bar-menu .menu li a:before {
    font-size: 25px;
}

And adjust the font size there to change the social icon size.

rinoa3108 Nov 3, 2019 · 10:47 am #13448

Hi Andrew,
I very much appreciate the quick response.
The icons change size with the CSS but the word ’email’ remains the same size (next to the social icons). Can this word change size?

Andrew Misplon Puro Nov 3, 2019 · 10:50 am #13449

Glad that helped a bit, please, add:

.site-footer .bottom-bar a {
font-size: 15px;
}
rinoa3108 Nov 3, 2019 · 11:48 am #13452

Hi Andrew,
The word “Wellness Eyecare” increased in size, but the word “email” remained the same size. Almost there!
Judy

Andrew Misplon Puro Nov 3, 2019 · 11:56 am #13453

In your custom CSS there isn’t a value listed:

.site-footer .bottom-bar a {
    font-size: px;
}

px would need to change to a value before the unit of measurement. For example 15px.

rinoa3108 Nov 3, 2019 · 12:15 pm #13454

Hi Andrew,

When I add in a value to the below code, nothing changes:

/* Bottom Bar Social Links Menu */

#colophon .social-links-menu ul li a:before {
font-size: 2rem;
}

When I add in a value here, the “Wellness Eyecare” changes size.

.site-footer .bottom-bar a {
font-size: 20px;
}

Andrew Misplon Puro Nov 3, 2019 · 12:23 pm #13455

Thanks, change

.site-footer .bottom-bar a {
font-size: 50px;
}

to

.site-footer .bottom-bar a[href^="mailto"] {
    font-size: 50px;
}
Andrew Misplon Puro Nov 3, 2019 · 12:34 pm #13456

Hi, the forum doesn’t support email replies at the moment. Please, copy CSS snippets from the forum directly. Characters will get incorrectly formatted via email. Thanks 🙂

9 posts