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?
Hi deyowulf!
You can use this for the mobile view menu text color:
#top .header_color select {
color: red;
}
Regards,
Ismael
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?
page selection area = mobile menu
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
Thanks will give it a go. How about the code to change the color of the menu font?
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
Thanks Yigit :)