Hi,
Could someone enlighten me on how I would be able to change the font and font sizes of the menu, the callouts and the normal text.
Best regards,
PROOY
Hi,
Could someone enlighten me on how I would be able to change the font and font sizes of the menu, the callouts and the normal text.
Best regards,
PROOY
Hi,
For the menu item you can use this on your custom.css
.menu-item a {
font-size: 20px!important;
}
For the normal text, you can easily use
body {
font-size: 20px!important;
}
For callout, you can use this
#top .callout p {
font-size: 20px!important;
}
Regards,
Ismael
I understand that this changes the size, but how do you change the font?
Thx
K
Also...how do you change the case of the callout text? I'd like to make my text upper and lower case rather than just all upper.
Thanks
Hi,
@K: you might want to add this on your Quick CSS or custom.css:
#top .callout p {
font-family: Arial;
}
or
#top .callout p {
font-family: Arial !important;
}
just change the font-family value. :)
@galleryj: try to add this code in Quick CSS or custom.css
#top .callout p {
text-transform:capitalize;
}
or
#top .callout p {
text-transform:capitalize !important;
}
Regards,
Ismael
Great. Works perfectly. Thanks
Hey,
Good thing it worked.
Regards,
Ismael
This topic has been closed to new replies.