Topic Resolution: Resolved
  • Closed
  • Olga
    Spectator
    April 25, 2016 at 11:40 am #26998

    Hello,
    that’s not a big technical question.. I just forgot how I made the hover color for social media links in the top right corner of the header before the update and can’t find it in the theme options how to do it now. Here is a screen shot http://prntscr.com/awjro9, I wanted the picto change the color when navigate/going to click on it.
    Thanks much in advance

    Denzel Chia
    Moderator
    Posts: 2656
    April 26, 2016 at 2:03 am #27015

    Hi,

    Please use the following in Theme Options -> Custom CSS
    This will change rss icon hover color to black.

    #social .t4p-icon-social-rss:hover {
    color: #000 !important;
    }

    Please let me know the hover colors that you require for your icons.
    Use this tool to pick the color hex code.
    http://www.colorpicker.com/

    Thank you.

    Olga
    Spectator
    Posts: 17
    April 26, 2016 at 11:20 am #27033

    Thank you, Denzel

    I tried to paste it into Custom CSS, but nothing to change. I think I made something wrong. Here is the fragment of my new Custom CSS http://prnt.sc/awz239.

    I want to change hover colour for social media links on #00CC00 (the same as main menu hover font)

    And, if it possible, I would like to change colour of this blue on green #009900 in small menu http://prntscr.com/awz8pr
    (also, didn’t find how to make it from options).

    Thanks much in advance

    Denzel Chia
    Moderator
    Posts: 2656
    April 27, 2016 at 1:31 am #27057

    Hi,

    Is this your website that you had applied the custom css?
    http://www.advertisingpays.ru/

    I am not seeing it in the source code.

    Please apply via Appearance -> Theme Options -> Custom CSS
    Don’t use the customizer.

    Do you have a server cache or cache plugin such as W3 Total Cache or WP Super Cache?
    If yes, you will need to clear it’s cache content.

    Let’s try to get the codes to show up first, before proceeding any further.

    Thank you.

    Olga
    Spectator
    Posts: 17
    April 29, 2016 at 1:08 pm #27145

    Hi Denzel,
    Thank you very much for advice to use Custom CSS in the Theme Options, because I tried to make customization directly into custom-css php file.

    I remove my previous corrections here and made it now via Appearance -> Theme Options -> Custom CSS (it’s so much easily and I saw the rss icon on black hover color).

    Only I wanted to have not black, but #00CC00 (green)

    Denzel Chia
    Moderator
    Posts: 2656
    April 30, 2016 at 8:06 am #27161

    Hi,

    You can replace the previous block of codes with the following custom css codes.

    #social .t4p-icon-social-rss:hover {
    color: #00CC00 !important;
    }

    The following is for your breadcrumb links.

    .breadcrumbs a {
    color: #009900 !important;
    }

    Thank you.

    Olga
    Spectator
    Posts: 17
    May 6, 2016 at 1:45 pm #27356

    Thank you, Denzel, I made corrections in Appearance -> Theme Options -> Custom CSS, very good now

    Denzel Chia
    Moderator
    Posts: 2656
    May 7, 2016 at 3:19 am #27372

    You are welcome!