By Mreyer-1 on
I want to change the green banner in the theme green n black. I'm trying to change the green banner to a different color. where in the css.style sheet do i change? I'm looking to change it to an orange.
please help!
thanks!!
Comments
Check you header div in the style.css ...
That's actually a background image. The refererence is in your main style.css here:
#header {style.css (line 73)
background:#C5E18A url(img/header_bg.png) no-repeat scroll 0 0;
overflow:hidden;
position:relative;
}
You would need to stick a different PNG background image in there ... or remove the image and just put a background color like this:
#header {style.css (line 73)
background:#EFB300 none repeat scroll 0 0;
overflow:hidden;
position:relative;
}
Notice that I deleted the background image and added in the orange background color.
-backdrifting
Thanks for the help. is there
Thanks for the help.
is there a way i could stick an orange png background image there? Also, how do apply these new changes? I just tried making changes to remove the image and put an orange background like you told me, but i dont see these changes.
Thanks!
How did you edit the file?
Did you make your edits to the style.css file? And then you uploaded the file back to the server via FTP correct Make sure you upload the file back to your server/site.
You may need to clear your Drupal cache to notice the changes. Did you do this?
To substitute a new PNG, you could design a PNG file in a photo editing program like Photoshop or GIMP and size the image the same as the original PNG that's in the theme now.
Let me know if that helps.
-backdrifting