Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #206693

    I changed the color of the main menu font using this code :

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    But it didn’t apply to the menu in the mobile responsive site. Suggestions?

    #206696

    Hi deyowulf!

    You can use this for the mobile view menu text color:

     #top .header_color select {
    color: red;
    }

    Regards,
    Ismael

    #206720

    Thanks. That changed the color of the text but the vertical line and vertical arrows at the right side of the the page selection area in the mobile version are still the same color as before.

    Also, is there a way to only change the color of the background and border of the mobile menu?

    #206721

    page selection area = mobile menu

    #206864

    Hi!

    Can you post the link to your website?

    Cheers!
    Yigit

    #207189
    #207289

    Hey!

    You can change the background color of the mobile menu select using this:

    #top .header_color select {
    border-color: blue;
    background-color: red;
    color: #155773;
    }

    Change the arrow select using this:

    #top .mobileMenu{
    background-image: url(IMAGE URL HERE);
     background-position: center right;
     background-repeat: no-repeat;
     border-radius: 2px;
    }

    Create your own image. The size should be 30x13px.

    Best regards,
    Ismael

    #207300

    Thanks will give it a go. How about the code to change the color of the menu font?

    #207335

    Hi!

    Please add following code to Quick CSS as well and adjust as needed

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    Regards,
    Yigit

    #207353

    Thanks Yigit :)

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Main Menu Font Color in Mobile Version Didn't Change with CSS’ is closed to new replies.