I have identified an inline style that I need to change. I cant locate how it got there or which specific rule I need to target to change it.
<div class="main-navigation-wrap main-navigation-sm d-lg-none is-active" style="top: 501px; height: 331px;">
This is what I want to over write when viewed in inspect element.
I want to remove the top to 0
I tried this:
.main-navigation-wrap .main-navigation-sm .d-lg-none .is-active
{
top: 0!important;
}
and this:
.main-navigation-wrap .main-navigation-sm .d-lg-none .is-active [style] {
top: 0!important;;
}
You can probably tell that my css knowledge is limited. How can I target and overwrite this inline style please.