If you look here:
https://followtheboat.com/join-ftbmates/
You can see six blocks, each with a coloured box and icon. I’d like to make this entire coloured box a clickable link, with a roll-over effect.
I’ve managed to make it a clickable link by following this thread
… by inserting this is JS
jQuery("#column-bosun").wrap("<a href='https://mywebsite.com/'></a>");
But how to add a roll-over effect?
I have changed the id and the class of my column to ‘column-bosun’ and when I click the ‘edit css’ of this element I have added
$el #column-bosun a:hover {background-color:#000; border:10px;}
but it’s not working. Have I misunderstood how this works? Or might it be that it is working but there are additional columns sitting on top of that column and is therefore hiding the hover effect? I put a large border on this to test just in case this is the problem.
Thanks.
