Hey guys,
Ive got some containers with a simple link on it:
I already made the entire container clickable with an older thread I found here. Now I try to change the background color on hover to a slightly darker color of my background.
I tried adding this code, but must be doing something wrong, can you help me fixing the hover code?
.gb-container.linked-container a:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
}
.gb-container.linked-container:hover .gb-headline.linked-container {
background: red;
color: white;
}
PS: The red and white are just examples, took this code from another thread here as well. Will change the actual color afterwards.
Thanks!