Okay
  Public Ticket #1382900
Navigation Color
Closed

Comments

  • wcgtc started the conversation

    I am wondering how to change the hover color in the navigation below the main level. It is currently set to green and I cannot find the option to make that change.

  •  2,010
    Ocean replied

    Hi,

    Please go to Appearance > Customize > Miscellaneous > Custom Code

    Add css code:

    nav .dropdown-menu li a:hover{ background: your-color; color: your-color; }

    We'll update this option in next version.

    Thanks.

    p/s: I saw your menu is so long, you should remove some menu items or move to dropdown menu. It'll look better.

  •  1
    Carrie replied

    Hi, I came across this ticket, looking for a solution for the same problem. I used the supplied code but it didn't make any difference. Can I ask you to check the code and/or supply another?

    Thank you.

    Regards

  •  2,010
    Ocean replied

    Hi Carrie,

    Please send me screenshot the css code that you added.

  • wcgtc replied

    Actually, I didn't need to include the code to change the hover background color. When you go to Appearance > Customize > Miscellaneous, changing the Primary Color worked for what I needed.


    I find that when I highlight text on the page (to copy and paste from the body of the website), it is still the default green color, though. Is there a way to change that color?

  •  2,010
    Ocean replied

    Can you send me screenshot green color? I checked your wesbite and didn't see them.

  • wcgtc replied

    I have attached a screen capture.

  •  2,010
    Ocean replied

    Hi,

    Sorry for late reply.

    You can add css code:

    ::selection{
      background: your-color;
    }
    ::-moz-selection{
      background: your-color;
    }
  • wcgtc replied

    Thank you, that worked.

  • wcgtc replied

    Is there a way to change the font color in posts and pages? I would rather it be black instead of grey.

  •  2,010
    Ocean replied

    You can add css code:

    body{ color: black; }