I've embedded a widget on my page that links to this javascript file: https://widget.zola.com/js/widget.js
The widget is generating a header section which i'd like to remove. https://widget.zola.com/v1/widget/registry/taylorandjaredseptember7/html?:1
I've inspected the element and was able to target the section and add a display: none
to it. That worked, but when I copied the code into my CSS style sheets, it was not working. I even tried adding !important
to it with no luck.
Is there something obvious that I'm missing?
This is the code I added to my stylesheets.
.registry-header {
display: none !important;
}
I also tried targeting the classes it was nested in, like so:
.row registry-header-section .col-xs-12 .registry-header {
display: none !important;
}
Other background info that might be helpful: - My site is a Wordpress site using the Divi theme.