Changing menu link colors in mobile

Hi,
 
I have 2 problems:

1- I use a layout in homepage. Menu link color is white but also I use sticky header and sticky header background also white too. How can I change homepage sticky header link colors?

2- In mobile I have same problem for homepage too. Background and link colors are white.

Site address is http://www.fayansart.com. Can you give me css codes please.

Thank you
Yesim

Comments

  • Hi,

    1. Sticky header menu items color, you can change with below css:
    #Top_bar.is-sticky .menu > li > a span:not(.description) { color: #000 !important; }
    2. To change menu items color on mobile only, please use below css:
    @media only screen and (max-width: 767px) {
        #Top_bar #menu ul li a { color: #000 !important; }
    }
Sign In or Register to comment.