shelley72
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sugar and Spice] changing accent colorHi! Would you mind telling me how you did this? I have been trying to do this all day and am losing my mind.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Font ColorsOk, good, whew! I was afraid I’d screwed someone else up, and that was not my intention! I didn’t even KNOW what a child theme was until today, lol. I am learning quickly. ??
Forum: Themes and Templates
In reply to: [Sugar and Spice] Tile Color For The WidgetsI am so sorry! Please excuse my very newbie behavior! I posted this response below on another post (see below). I was just excited to help someone, but I now realize I needed the child theme!
This is my follow up post to the other thread –
Hi, Alex! Yeah – I am VERY new at this and figured that out the hard way after I posted this! I got locked out of my site due a syntax error. Anyway, I created a child theme of this theme, and then made the changes I listed earlier in the child theme. Now my site is fine!
So, eurydik – be sure to create a child theme BEFORE doing these changes. I used this tutorial that I found online to do the child theme –
Forum: Themes and Templates
In reply to: [Sugar and Spice] Font ColorsHi, Alex! Yeah – I am VERY new at this and figured that out the hard way after I posted this! I got locked out of my site due a syntax error. Anyway, I created a child theme of this theme, and then made the changes I listed earlier in the child theme. Now my site is fine!
So, eurydik – be sure to create a child theme BEFORE doing these changes. I used this tutorial that I found online to do the child theme –
Forum: Themes and Templates
In reply to: [Sugar and Spice] Tile Color For The Widgetswsw342600,
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!
Forum: Themes and Templates
In reply to: [Sugar and Spice] Font Colorseurydik,
I was having the same problem with the widget title fonts 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!