wsw342600,
I was having the same problem and finally fixed this after a few hours.
You need to change/add code in two places.
First go to Appearance>Editor. Choose extras.php from the right sidebar. Scroll down until you see:
Output color scheme CSS in header
Keep scrolling under that (not far) until you see:
$output .= sugarspice_css_output( ‘.widget-title em’, $accent_color);
Add a blank line under this line. Copy the above line of code and paste it in the blank line. Then change what you just pasted to say:
$output .= sugarspice_css_output( ‘.widget-title’, $accent_color);
That will make all of the widget titles the same color.
To change the widget font so the fonts are all the same when you have two words in your widget title, go the style.css on the right sidebar. Scroll about halfway down until you see:
05. Sidebar & Widgets
Scroll just under that until you see:
.widget-title {
Under that you will see background, font size, etc.
Change the font-size to 24px;
Change the font-family to ‘Niconne’, cursive;
Change the text-transform to lowercase;
That will make the fonts the same font when you have two words as a widget title. The final code for that first section should look like:
background: url(“images/border.png”) repeat-x 0 11px;
font-size: 24px;
line-height: 1.75em;
margin: 0 0 1em 0;
font-family: ‘Niconne’, cursive;
text-transform: lowercase;
font-weight: normal;
text-align: center;
I hope this helps! This fixed it for me!