Tagged: font size
Is there a way not too complicated to increase the text size in a “Text Widgets” included in a sidebar ?
(I would like to increase its font size of 1 or 2 pixels)
Thanks,
Hey AlainTernet!
Surround the text with this.
<span style = "font-size: 16px !important;">
</span>
Cheers!
Elliott
Thanks Elliott, that work.
But, now I try to justify the text, I try with this :
<span style = "text-align: justify; font-size: 14px !important;">
but something it’s not good. Probably my syntax ?
I also use a menu a Custom menu widget in the same sidebar, Is it possible to increase the font size too ?
Hi,
Could you provide us with a link to the site in question so that we can take a closer look please?
Regards,
Rikard
Hi,
Here are the login informations:
Hi,
Thanks for the details but they are not working for me, could you check please?
Best regards,
Rikard
Oups, Sorry for the mistake. That work now.
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
ul#menu-menu-mammouth a {
font-size: 15px;
}
Cheers!
Yigit
That work for increasing the menu font size, Thanks,
But, I always have a problem to justify the text. I tried with this code
but something it’s not right:
<span style = “text-align: justify; font-size: 14px !important;”>
Hey!
I guess you’re not noting it because justify
kicks in when there’s actual text to “justify”, as the menu items labels aren’t filling the whole width it doesn’t take any effect, perhaps what you want is to add some space between letters:
ul#menu-menu-mammouth a {
font-size: 15px;
letter-spacing: 3px;
}
Regards,
Josue
The “justify” question is for the “Text Widgets” included in a the sidebar, not for the menu.
I used the code from Elliott to increase the size, it’s ok but now I try to justify the text.
Hey!
Try with this code:
.textwidget {
text-align: justify;
}
Cheers!
Josue
Nice ! Thank you !