What would the code be to change the ribbon color in the ever after theme?
The blog I need help with is thefuturescotts.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
What would the code be to change the ribbon color in the ever after theme?
The blog I need help with is thefuturescotts.com.
hi..
You need to replace with color changed images -
http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-middle.png
http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-left.png
http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-right.png
Thanks Flextoon. Once I edit the color of the images, how do I import them? Or where do I save them? Sorry, I am new to wordpress and css.
how do I import them?
Upload them to your media library.
Then edit the following CSS by replacing the url() values with the links to the new images you uploaded to your media library:
#description-left {
background: url("http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-left.png") no-repeat 0 0;
}
#description-middle {
background: transparent url("http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-middle.png") no-repeat 50% 0;
}
#description-right {
background: transparent url("http://s1.wp.com/wp-content/themes/pub/ever-after/images/ribbon-right.png") no-repeat 100% 0;
}
And finally, add the edited CSS to your Appearance → Custom Design → CSS page.
This topic has been closed to new replies.