- Posts: 66
- Thank you received: 0
breed_row
1 month 1 week ago #52214
by info9838
Hi,
On template cats, I would like to change the value of the breed row (on home page article) from dark to clear.
I try to change the custom css :
.breed_row .sparky_cell::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-color: rgba(0, 0, 0, 0.1 in place of 0.4);
border-radius: 15px;
z-index: 1;
transition: all 0.3s;
}
.breed_row .sparky_cell:hover::before {
background-color: rgba(0, 0, 0, 0 in place of 0.1);
transition: all 0.3s;
}
but nothing change...is there another place to change the values?
Thank you,
Michael
On template cats, I would like to change the value of the breed row (on home page article) from dark to clear.
I try to change the custom css :
.breed_row .sparky_cell::before {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background-color: rgba(0, 0, 0, 0.1 in place of 0.4);
border-radius: 15px;
z-index: 1;
transition: all 0.3s;
}
.breed_row .sparky_cell:hover::before {
background-color: rgba(0, 0, 0, 0 in place of 0.1);
transition: all 0.3s;
}
but nothing change...is there another place to change the values?
Thank you,
Michael
Please Log in to join the conversation.
1 month 1 week ago #52217
by milos
Hello,
Yes, this is the correct way to do this. If you don't see the changes, try clearing the browser's cache. If the cache is not an issue, make sure you are editing the correct CSS file. If you send link to your site, I would give you detailed info.
Regards,
Milos
Yes, this is the correct way to do this. If you don't see the changes, try clearing the browser's cache. If the cache is not an issue, make sure you are editing the correct CSS file. If you send link to your site, I would give you detailed info.
Regards,
Milos
Please Log in to join the conversation.
1 month 1 week ago #52223
by milos
Hello,
Your change has been applied. The background is now using this value:
If you are not satisfied with the result, you can try a white background color with opacity, like this:
Regards,
Milos
Your change has been applied. The background is now using this value:
Code:
background-color: rgba(0, 0, 0, 0.1);
If you are not satisfied with the result, you can try a white background color with opacity, like this:
Code:
background-color: rgba(255, 255, 255, 0.6);
Regards,
Milos
Please Log in to join the conversation.
Time to create page: 0.141 seconds