Archived topic
Sidebar font change only
6 replies · Started by Rebecca Wade on March 9, 2015
Hi,
I want to change the font type of the sidebar content only. How can I do this please?
Thanks,
Rebecca
Hi Rebecca,
You would have to use CSS to change the widget content font.
Something like this:
.widget {
font-family: FontName;
}
Let me know if you need more info :)
Hi
I added .widget {
font-family: "Times New Roman", Times, serif;
} to custom css editor and its not made any difference?
The client wants a more handwriting feel to the testimonials in the sidebar at http://j100.purple-dog.co.uk/
Please help further?
Thanks,
Rebecca
HI
I could be wrong but you need to replace .widget{
with name of your widget
in you case I think it is
.wpmpst-widget-2{
Ian
I am a customer of GP so ignore as you wish
Ian is correct if you want to specify one specific widget.
However, I looked at your site and it looks like you entered the code inside stars like this: /* */
Doing so will make your browser ignore the CSS.
Try adding the CSS below the last star */
Hi guys,
Thanks for your help but sadly none of these seems to have worked?
Any ideas?
Thanks,
Rebecca
Hi Rebecca,
Doesn't look like you removed the stars as I mentioned above.
In your CSS, replace this:
/* Enter Your Custom CSS Here
.widget {
font-family: "Times New Roman", Times, serif;
}
*/
With this:
/* Enter Your Custom CSS Here */
.widget {
font-family: "Times New Roman", Times, serif;
}