I'm using jQuery
in a Google Chrome extension to overwrite a website's default CSS
.
The default class for .CatalogHoverContent
is display: none;
, however when the class .SmallCatalogItemView
or .CatalogItemInner
is hovered, it changes to display: block;
I've attempted to prevent this by overwriting the style using the code below, however the website's default style seems to be overwriting this and the class CatalogHoverContent
still isn't shown by default.
.CatalogHoverContent {
display: block;
}
Is there an alternative way to edit the style, such as JavaScript?