Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Sidebars & Widgets (http://forum.bytesforall.com/forumdisplay.php?f=14)
-   -   [SOLVED] fonts on widet titles (http://forum.bytesforall.com/showthread.php?t=338)

doug86 Feb 11, 2009 01:06 PM

[SOLVED] fonts on widet titles
 
I want to change the font on the sidebar "Pages" widget title, but cannot find any place to change that.



site: www.5goulds.com

Doug
.....sorry: Widgets...

Flynn Feb 11, 2009 07:21 PM

See A. Theme Options -> Widgets -> Widget Title


moving this thread to main forum

doug86 Feb 11, 2009 07:29 PM

yup, been there: theme options>widgets>widgets title....

default is "blank"
I tired entering the following:

font: arial 12;

nothing changed
I tried this:

font: verdana 11;

nothing changed.

I guess I need the actual code to enter to change the font in the widget title,

Flynn Feb 11, 2009 07:35 PM

A px, em, % or pt is missing after the number, try

HTML Code:

font-size: 12px;
font-family: arial, sans-serif;

If you use em instead of px the font can grow along with the other fonts in the theme when someone chooses to increase the font size through his browser settings

HTML Code:

font-size: 1em;
font-family: arial, sans-serif;

Possible values Xem, X.Xem and X.XXem

doug86 Feb 11, 2009 07:43 PM

perfect! now, how do I make the font "normal" instead of "bold"?

Flynn Feb 11, 2009 07:49 PM

Add

HTML Code:

font-weight: normal;
Here are more options http://www.w3schools.com/css/css_font.asp

Don't use font-weight if you're using font-variant: small-caps

End each rule with a semicolon and enclose font names with a space in quotes:

HTML Code:

font-family: "comic sans ms", "times new roman", georgia, serif;
Several fonts in a row mean use the next font face if this one is not available on the user's computer.


All times are GMT -6. The time now is 11:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.