• mdivk

    (@mdivk)


    My site is here, as you can see the default menu_bottom shows a ribbon with blue color, I want to change it to some other color like orange, with firebug I found the css is defined in .nav-foot and a image menu-bottom-blue.png is used, I have created the new image with the color I need, but how do I update the css? it doesn’t exist in style.css but rather like a computed style?

    Thank you very much.

Viewing 1 replies (of 1 total)
  • AddWeb Solution

    (@addweb-solution-pvt-ltd)

    Hello mdivk,

    Add below code into active child theme’s style.css file.

    Note : Don’t modify your theme. Use child theme for any modification.


    .nav-foot {
    background: url(your_image_url) left bottom repeat-x;
    }

    Example: background: url(images/menu-bottom-orange.png) left bottom repeat-x;

    Hope this will helps you.

    Thanks!

Viewing 1 replies (of 1 total)
  • The topic ‘How do I adjust the menu_bottom ribbon color?’ is closed to new replies.