
Originally Posted by
firstcapitalfirearms
Anne,
Not sure if this has been asked or not and if so I am sorry. I am wanting to change the color of the blue ribbons / banners of the template. I am assuming it is on the same file as inserting a image for the background but I am not sure what I am looking for.
Thanks
Mark
If you don't mind me butting in,
The ribbon displays are controlled by a background image as defined in stylesheet_mega_menu.css
Code:
#mega-wrapper .mega-menu {
background: url("../images/menu-bk.png") no-repeat scroll 0 0 / 100% auto rgba(0, 0, 0, 0);
You would need to replace menu-bk.png with an image in your required colour. Alternatively, as I did, you could
use something like,
Code:
#mega-wrapper .mega-menu {
background: none repeat scroll 0 0 #29CCA3;
which would change its background color but loose the ribbon effect.
The above example is just for one of the ribbons, top-centre, you could look in your images folder for the others and isolate where they occur in the stylesheets. Ideally you should be using Firebug to help identify, amongst others, css selectors.
Bookmarks