• Resolved lulemanijak

    (@lulemanijak)


    Hello. I experimented with my header i wanted it to be transparent. Now everything in header is transparent. How can i change submenu color and text color i main menu ? Also is posible for my logo not to be transparent?
    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Use background property instead of background-color:

    Like:

    background: url(http://blog5.ibckc.org/wp-content/uploads/2017/08/cropped-poVgz.png);
    }

    Use this CSS property:

    #navigation_bar {
        position: fixed;
        z-index: 999;
        -webkit-transform: translateZ(0);
        width: 100%! important;
    }

    instead of this :

    #navigation_bar {
        background: black!important;
        opacity: 0.7!important;
        position: fixed;
        z-index: 999;
        -webkit-transform: translateZ(0);
        width: 100%! important;
    }

    Save the changes.

    And for the parent & sub-menu color use below CSS rules:

    #navy ul li a {
        color: #ce620f;
    }
    .light_header #navy > li > a, .light_header #navy > li > a:hover, #navy > li:hover > a:not(.nav_trigger) {
        color: #ce620f;
    }

    Save the changes.

    Thank You

    Thread Starter lulemanijak

    (@lulemanijak)

    Thank u very much. How can i change menu to be black for mobile phones ?

    Hi,

    Use below CSS Rules into Custom CSS Editor:

    @media only screen and (max-width: 1024px){
    #mobmenuright li a, #mobmenuright li a:visited, .show-nav-right .mob-menu-copyright, .show-nav-right .mob-expand-submenu i {
    color: #000 !important;
    }
    }

    Save the changes.

    But we preferred #fff color for more visible.

    Thank You

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Menu text color’ is closed to new replies.