Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1489207

    I have added the code below to additional css but the css-code for the hover event
    does not work on page https://karlostman.com/Olle_Wp/lankar/

    a:link {
    text-decoration: none;
    color: blue;
    }
    a:visited {
    text-decoration: none;
    color: red;
    }
    a:hover {
    text-decoration: underline;
    color: black;
    }
    a:active {
    text-decoration: underline;
    color: green;
    }

    #1489210

    Hey oburlin,

    You could try to use !important in your statements, for example:

    a:hover {
    text-decoration: underline !important;
    color: black;
    }

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.