Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1190258

    gabriellavanrij
    Participant

    Hi there! This is my website:

    http://gabriella.global/

    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.

    #1190260

    gabriellavanrij
    Participant

    Also, how do I make these same changes to my mobile version?

    #1190275

    Rue Nel
    Moderator

    Hello 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.

    #1190288

    gabriellavanrij
    Participant

    That worked! Thanks!

    Except the last menu item “English” is still grey… Any help for that?

    #1190300

    Rue Nel
    Moderator

    Hello 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.

    #1190337

    gabriellavanrij
    Participant

    That 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!

    http://gabriella.global/contact/

    #1190342

    Rupok
    Member

    Hi 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!

    #1190346

    gabriellavanrij
    Participant

    Thank you so much!

    #1190349

    Rupok
    Member

    You are welcome!