Archived topic
Changing Different Footer Widget Font Sizes in Mobile and Desktop
9 replies · Started by Steven on October 11, 2018
Hi,
Im trying to change the font sizes in the footer widgets so that they are 14px in desktop and 10px in mobile.
Ive tried the following:
@media (max-width: 768px) {
.footer-widgets {
font-size: 10px}
}
But makes no difference.
Hi there,
You want both links and text in the footer widgets to be smaller I assume?
What about titles?
Let me know :)
Wow fast response!
Yes titles as well
Thanks
Try this:
@media (max-width: 768px) {
.footer-widgets .widget-title {
font-size: 12px;
}
.footer-widgets .widget {
font-size: 10px;
}
}
Let me know :)
Thats perfect! Thanks for the quick solution!
Glad I could help :)
Hi-
I was wondering if your footer widget font size fix will change the size of link text as well? I want the text and links to be the same size in my footer.
Looks like they already are?
Yep, thanks Leo! Guess I should have tried it out before asking my question.
Yup definitely good idea.
No problem :)