Hi,
Please use the below code to fix the issue
@media screen and (max-width: 782px) {
#top-bar-wrap {
z-index: 999;
}}
For Custom CSS, Go to Appearance > Customize > Custom CSS.
I just added it. No change :/
I cleared the cache, to be sure its not cached
Any other suggestions?
-
This reply was modified 5 years, 11 months ago by
lesi2000.
Please use “! important” with it and check.
! important
@media screen and (max-width: 782px) {
#top-bar-wrap {
z-index: 999;
}}
if it is like this…its not working again. and this too:
@media screen and (max-width: 782px) {
#top-bar-wrap {
z-index: 999;
}}! important
Not like that.
You should use an important tag for this:
@media screen and (max-width: 782px)
#top-bar-wrap {
z-index: 999 !important;
}
thanks for the correction
Still not working. :/
Please try this one.
@media screen and (max-width: 782px) {
div#top-bar-wrap {
z-index: 999;
} }
Sorry for the late response,
This one worked! Thanks!
-
This reply was modified 5 years, 10 months ago by
lesi2000.
Glad to hear that it is fixed.