On my way to build my store, i wish someone can help me with this, i want to remove that shadow hover effect when it is selected, just the shadow i show you with an image
Solved! Go to the solution
Please add this code to your theme.scss file:
.product-card__overlay {
background-color: transparent;
}
Let me know!
@JHKCreate works really fine! but some issue i found, if you put mobile view when you click some product it show 0.1s to that shadow background, can i remove that ?
Add the following instead:
.product-card__overlay {
transition: none;
background-color: transparent;
}
Let me know!
Oh this is normal and added by the browser and not the website. You can remove it but it makes your website less open to accessibility: You can see this here https://www.a11yproject.com/posts/2013-01-25-never-remove-css-outlines/
If you really need to it can be removed, let me know
@JHKCreate wrote:Oh this is normal and added by the browser and not the website. You can remove it but it makes your website less open to accessibility: You can see this here https://www.a11yproject.com/posts/2013-01-25-never-remove-css-outlines/
If you really need to it can be removed, let me know
@JHKCreate Thanks for the information, I did not know anything about it,
we can taste the difference and see how it looks
This is an accepted solution.
Add the following code:
:focus {
outline: 0;
}
User | Count |
---|---|
394 | |
205 | |
129 | |
46 | |
42 |