$5
Change home page button colors Emporium theme frome templatic
www dot sweetcitygirl dot com
saint merc | 03/30/11 at 4:29pm
| Edit
The experts have suggested, on average, a prize of $10 for this question.
(3) Possible Answers Submitted...
-

Last edited:
04/06/11
5:49pmDaniele Raimondi says:You have to simply modify some code in the stylesheet(s) of your theme. For example, if you wanna change the color the HOME button go to wp-content/themes/Emporium/skins/1-default.css on line 57 and change the color as you like.
I can suggest to use FireFox and Firebug extension to clearly understand where and how customize your css
-

Last edited:
04/06/11
5:49pmAdamGold says:To change the "prev" and "next" tabs open your CSS and type:
.nivoSlider a.nivo-nextTab {
background: #yourcolor;
}
.nivoSlider a.nivo-prevTab {
background: #yourcolor;
}
To change the control tabs of the slider:
.nivoSlider .nivo-controlNav a {
background: #yourcolor;
}
And the footer links:
#footer a {
color: #yourcolor;
}- 03/31/11 11:35am
saint merc says:I have been inserting the scripts everywhere and things are moving but the buttons are not changing color. Where do I enter the script? Also, my script is different in the css style sheet compared to the default.
- 03/31/11 2:53pm
AdamGold says:Try to put it before your closing </head> tag:
<style type="text/css">
.nivoSlider a.nivo-nextTab {
background: #yourcolor;
}
.nivoSlider a.nivo-prevTab {
background: #yourcolor;
}
.nivoSlider .nivo-controlNav a {
background: #yourcolor;
}
#footer a {
color: #yourcolor;
}
</style>
- 03/31/11 11:35am
-

Last edited:
03/31/11
2:09pm
This question has expired.
Current status of this question: Completed




