Tagged: footer
Hi, how can I remove the text ‘Enfold Theme by Kriesi’ from my footer?
Additionally, I would like the footer menu to display centred in the footer, with larger font size
How can I do this?
Thanks, Richard
p.s I just hid the ‘Enfold Theme by Kriesi’ text by adding
.copyright { display: none; }
to the Quick CSS box.
Is there a better way to do this by editing the php?
And I’m not sure how to make the footer menu sit in the centre of the footer and display in a larger size
Thanks
Great, thanks Josue
How can I centre the menus and make the font bigger?
Hey!
Try adding this code to the Quick CSS:
#socket .sub_menu_socket {
float: none !important;
}
#socket .sub_menu_socket ul {
text-align: center;
margin-bottom: 6px;
}
#socket .sub_menu_socket li {
float: none !important;
display: inline;
}
Cheers!
Josue
Thank you Josue,
How can I make the font size bigger for the footer menu text?
Hey!
Please add following code to Quick CSS
socket a {
font-size: 14px;
}
Cheers!
Yigit
Thanks Yigit,
That did not work on the footer but I changed the css as follows and it works.
footer a {
font-size: 14px;
}