Banner customization for Ever After theme
-
I’m wondering if it’s possible to change the banner that accompanies the Ever After theme. As a default, it’s a turquoise color, but I’m hoping to change it to more of a blue. Is there any way to achieve this?
The blog I need help with is: (visible only to logged in users)
-
-
I found that you used the following CSS to make that change:
#description-left { background: url('http://danandjuli.files.wordpress.com/2013/03/ribbon-left.png') no-repeat 0 0 } #description-middle { background: transparent url('http://danandjuli.files.wordpress.com/2013/03/ribbon-middle2.png') no-repeat 50% 0 } #description-right { background: transparent url('http://danandjuli.files.wordpress.com/2013/03/ribbon-right.png') no-repeat 100% 0 }Nice work!
-
-
-
If you want the banner and tagline/site description to go away, add he following:
#description { display: none; }If you want only the banner to go away, but want to keep the tagline/description text, then add this and you will need to edit the color codes for the text so that it will show up. I’ve inserted the header blue color so that the text will show up, so edit as you desire.
#description-left, #description-right, #description-middle { background: none repeat scroll 0 0 transparent; } #site-description { color: #0088CC; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); }If you do not want the text shadow, make the “text-shadow” declaration look like this in the above:
text-shadow: none !important;
- The topic ‘Banner customization for Ever After theme’ is closed to new replies.