Tagged: x
-
AuthorPosts
-
September 25, 2016 at 9:40 pm #1190258
Hi there! This is my website:
I would like to
1. Increase the font size of my menu.
2. Make visited links always white on my menu. (Not grey. See image — the “english” link)
I am using latest WP, latest cornerstone, child version of latest X.
Thanks.
September 25, 2016 at 9:41 pm #1190260Also, how do I make these same changes to my mobile version?
September 25, 2016 at 9:54 pm #1190275Hello There,
Thanks for writing in!
1] To increase the font size of your menu, please edit your child theme’s style.css and find this block. You need to increase the font size from 8 to your desired font size.
.x-navbar .x-nav-wrap .x-nav > li > a { font-size: 8px !important; }
2] To make the visited links always white, you can make use of this code:
.x-navbar .x-nav-wrap .x-nav li a:visited{ color: #fff !important; }
We would loved to know if this has work for you. Thank you.
September 25, 2016 at 10:08 pm #1190288That worked! Thanks!
Except the last menu item “English” is still grey… Any help for that?
September 25, 2016 at 10:25 pm #1190300Hello There,
Please update the last given css code and use this instead:
.x-navbar .x-nav-wrap .x-nav li a:visited, .x-navbar .x-nav-wrap .x-nav li.menu-item-language-current a{ color: #fff !important; }
Hope this helps. Please let us know how it goes.
September 25, 2016 at 11:21 pm #1190337That worked!!!! THANK YOU SOOOO MUCH!
Could you help me with one more thing? I asked this on a different thread, but the reply there didn’t work.
I’m trying to change the labels on my contact form to WHITE. NOT BLACK. See pic.
Any suggestions of how to change that? Thanks!
September 25, 2016 at 11:30 pm #1190342Hi there,
Thanks for writing back. It seems you have added the below code to your Child Theme’s style.css that’s causing the issue :
.page-id-2227 p, label { color: black !important; } .page-id-2228 p, label { color: black !important; }
Kindly remove this to get expected result. When you add any custom code to your site, make sure you know what you are doing to avoid potential conflicts.
Hope this makes sense.
Cheers!
September 25, 2016 at 11:33 pm #1190346Thank you so much!
September 25, 2016 at 11:38 pm #1190349You are welcome!
-
AuthorPosts