• Hello! I was hoping for some custom CSS to change the link and hover colours from purple and green to my choice, WITHOUT changing the main menu colours (all my attempts so far have changed all the links on the site).

    There are currently only two links appearing on the site – one I inserted myself and one that was generated along with a contact for, on this page http://www.sittingpretty.net.au/contact/

    Thank you for your help. I can muddle my way through many things but I have never learned to write code so this is difficult for me if the answer isn’t on google! 🙂

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello sittingpretty,

    We have checked the site we are unable to see the purple color in the menu for better understanding please refer the screenshot-

    OnPaste.20180508-195123

    Kind Regards,

    Manoj

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    This will let you change the color and hover color on the contact page send my message button.

    input[type="submit"] {
    	border-color: #cc0000;
    	color: #cc0000;
    }
    input[type="submit"]:hover {
    	border-color: #dddd66;
    	color: #dddd66;
    }

    For links you place into your post and page content, the following can be used to shift those colors.

    .entry-content a {
    	color: #cc0000;
    }
    .entry-content a:hover {
    	color: #dddd66
    }
    Thread Starter sittingpretty

    (@sittingpretty)

    Thank you @sacredpath, that worked perfectly :). Much appreciated.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hooray and you are welcome!

    I am using Karuna and thanks to many great tips here, I have managed to get most of my colors the way I had them on wordpress.com before moving over. For that, many many thanks! One thing I can’t seem to “fix” is the visited color. My links are a greenish-blue, the hover color is dark orange. Once visited, they become an odd lime green. I’ve tried a:visited {color:#194E44;} but it doesn’t seem to work. Any suggestions. My site is: http://www.beerwanderers.com. Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Link and hover colours’ is closed to new replies.