Hi, I have a site where we are trying to change the font size for the menu and text in the footer. I’ve tried the advanced styling tab and changed <p> to 18pt. I’ve changed the widget links to 18pt. I’ve disabled the file compression settings and deleted the cache and it still does not change. Any other ideas?
Hey jmjwebsites,
Thank you for the inquiry.
Are you referring to the links within the socket container? If that’s the case, you can use this css rule to adjust the style of the menu items.
#socket .sub_menu_socket li {
float: left;
display: block;
padding: 0 10px;
border-left-style: solid;
border-left-width: 1px;
line-height: 10px;
font-size: 18px;
}
For the copyright text, please add this code:
#socket .copyright {
float: left;
font-size: 18px;
}
Best regards,
Ismael
That worked, thank you