• Resolved Marc2412

    (@marc2412)


    Hey there,

    Here is my vacancy page: here

    As you can see when you hover over the job the text becomes red, but I tried to make the text green once you’ve seen it. Is this possible? I have tried

    ul.job_listings li.job_listing a div.position h3 {
    color: lime !important;
    }

    It’s not working ??

    Help!

    https://www.ads-software.com/plugins/wp-job-manager/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Mike Jolley

    (@mikejolley)

    You need to use the visited selector https://www.w3schools.com/cssref/sel_visited.asp

    Thread Starter Marc2412

    (@marc2412)

    I did, I see I forgot to put that in my code there, it didn’t work.

    Plugin Author Mike Jolley

    (@mikejolley)

    Put the correct code here then, I cannot tell you if its wrong if its not here :p

    Thread Starter Marc2412

    (@marc2412)

    I used this, to try for the background, but it didnt work as I can’t get the background to change with this code:

    ul.job_listings li.job_listing a:visited {
    background-image: url(https://ak8.picdn.net/shutterstock/videos/276772/preview/stock-footage-growing-golden-title-frame-and-flowers-on-red-background-hd-cg-animation.jpg) !important;
    }

    Then I tried this for the text to change to green once visited, doesnt work either:

    ul.job_listings li.job_listing a div.position h3:visited {
    color: lime !important;
    }

    Clueless

    Plugin Author Mike Jolley

    (@mikejolley)

    The second one would need to be:

    ul.job_listings li.job_listing a:visited div.position h3 {
    color: lime !important;
    }
    Thread Starter Marc2412

    (@marc2412)

    Thank you so much:)

    All done!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Once seen text to green’ is closed to new replies.