Hi there.
I’m making a membership site, where i have targeted the “not open yet” menu items with custom CSS to make them grey and unclickable. Everything is looking “locked down” except from the blue border on hover. That’s the last thing i need to target with CSS to make it grey like i’ve done with the text. Here’s a video of what i’m talking about:
I want to make the border grey on hover instead of blue on my menus with the class “unclickable”.
Heres my CSS on this class, as it is now:
.unclickable > a:hover {
cursor: default !important;
}
.unclickable .x-anchor-text-primary {
color: rgb(181, 181, 181) !important;
border-color: #f1f2f4 !important;
}
Now i need to change the color of the buttom border when i hover the menu so it looks completely unclickable.
Do you know how i target this with CSS?
Thanks!