Tagged: footer
A few questions:
1. Is there a way to limit the number of tags in a tag cloud that’s forcing it to be too long? I don’t want the tag cloud to be longer than the text in the left column. Or set a max footer height?
3. All the plugins I have are using different fonts/treatments, is there a way to override that and use the theme fonts for the entire footer area? Or where can I control the styling for that section?
https://thedownlo.com/ for reference
Hey laurenmonitz,
Please have a look at this thread for the tag cloud issue:
https://wordpress.stackexchange.com/questions/155206/edit-tag-cloud-widget-number
https://share.getcloudapp.com/9ZuEmnke Do you mean fonts for these widgets?
Best regards,
Victoria
Yes, all the widgets in my footer have different fonts/treatments from various plugins. Is there a way to override and make them all the same?
Hi,
I’m not seeing any styling on the page at all. Are you having the same issue?
Best regards,
Jordan Shannon
I haven’t set any of the fonts/sizes in the footer, they just are whatever the various plug-ins have them set as automatically, which is all across the board. How do I make them all consistent?
Hi,
I see. Add this to quick css and adjust the font-family to what you need:
#footer {
font-family: AUTO!important;
}
Best regards,
Jordan Shannon
Thank you — is there also a way to increase the spacing of the socket nav on mobile so they’re not so crunched together?
Hi,
Add this to quick css:
@media only screen and (max-width: 767px){
#socket .sub_menu_socket l{
line-height:20px!important;
}}
Best regards,
Jordan Shannon
That unfortunately didn’t do anything :(
Hi,
Apologies, I had a typo in the code:
@media only screen and (max-width: 767px){
#socket .sub_menu_socket li{
line-height:20px!important;
}}
Best regards,
Jordan Shannon