Hover effect

How can I make a hovered anchor tag white while others being gray just like this?
31 Replies
Chris Bolson
Chris Bolson3mo ago
Assuming you are OK with using :has() you can do this by adding the hover effect (gray) on all of the elements (except the one with the hover) like this:
.parent-selector:has(:hover) > a:not(:hover){
filter: grayscale(1);
[your hover styles here....]
}
.parent-selector:has(:hover) > a:not(:hover){
filter: grayscale(1);
[your hover styles here....]
}
Where ".parent-selector" is the selector for the links container. ...ah, and just add your normal styles to the hovered item.
FES001
FES0013mo ago
Do you have a time? It is not working. If possible, can we have a chat in the voice chat?
Chris Bolson
Chris Bolson3mo ago
The best thing you could do is set up a codepen or similar and share your code.
FES001
FES0013mo ago
No description
FES001
FES0013mo ago
Where do I write the code that makes the other anchor tags gray?
FES001
FES0013mo ago
That is the code and this is what I wrote:
No description
FES001
FES0013mo ago
https://codepen.io/FESODI/pen/zYVZJBo Can you please help me with it now?
Alex
Alex3mo ago
you need to put :has(:hover) on the parent element that selector means if an element contains an element which is hovered, apply this style to everything in it that is not hovered
FES001
FES0013mo ago
In that case, parent element is .hidden-menu-links-anchor. Right?
Alex
Alex3mo ago
no, the parent is .hidden-menu-links that's the parent of the hovered element and the elements you want to style
FES001
FES0013mo ago
No description
FES001
FES0013mo ago
It is not working.
Alex
Alex3mo ago
yes it is
FES001
FES0013mo ago
In my code I have a position absolute for the .hidden-menu-links-anchor-text. Does this affect?
Alex
Alex3mo ago
it shouldn't do That codepen I linked is your code, plus the line required if that doesn't work for you, it might be that your browser doesn't support one or more of the features used, but :has and :not have both been supported since 2022 in all browsers except firefox, which added support for :has late last year
FES001
FES0013mo ago
I am using chrome Way it does support.
Alex
Alex3mo ago
No description
Alex
Alex3mo ago
as I'm looking at it, you're missing the . to indicate a class selector
No description
FES001
FES0013mo ago
Can you look at the original code now?
Alex
Alex3mo ago
you've got two typos .hidden-menu-links:has(:hover) .hidden-menu-links-anchor:not(:hover)
FES001
FES0013mo ago
What about now?
Alex
Alex3mo ago
It's still wrong. You need a . at the start of the selector, because hidden-menu-links is a class. Without the . the browser is looking for an HTML element called 'hidden-menu-links', determining that it doesn't exist, and then ignoring everything else literally copy and paste the code I shared right there and it will work
FES001
FES0013mo ago
No description
FES001
FES0013mo ago
Should this code work?
Alex
Alex3mo ago
yes I can now load your codepen and see the effect working as intended does it work for you?
FES001
FES0013mo ago
It is working but not on my project. : ) Yes, it is working. Only on codepen.
Alex
Alex3mo ago
can't help you more without seeing the original code then I'm afraid
FES001
FES0013mo ago
Do you have a free time now? I will share my screen in the audio chat?
Alex
Alex3mo ago
go ahead
FES001
FES0013mo ago
Thank you so much again : ).
Want results from more Discord servers?
Add your server