I’m customizing a wordpress theme called Canvas, but i’m getting some weird issues.
Firefox is not accepting this CSS property:
header {margin-top:-130px;}
It works perfectly on Chrome.
Here’s the link to my site: http://creatyz.com/yogasalon/
Can anyone help me? I tried everything I could to fix it.
Thanks a lot in advance!
change
to
or if that is vendor css
add
to your css
(Note the !important is just for testing and should be replaced by something like )
for the selector
Sounds to me as if you are trying to adjust header at just the top of the page?If thats the stuff you can use
top:/*Your value*/;
instead of negetivemargin-top:/*your value*/;
!try
and if possible try not work with negative margins…
;]