css - position:absolute !important does not work in Firefox -
my problem: in other browsers, can position slideshow absolutely appear within frame. in firefox page renders , firefox automatically puts slideshow position: relative
.
what code should be:
top: 95px; left: 22px; position: absolute !important;
what is:
position: relative; top: 95px; left: 22px;
why doesn't firefox support position: absolute
in case?
in css file, specifying position: absoulte !important
#fadeshow1
might work
#fadeshow1{position: absolute !important}
also, in js/fadeslideshow.js
, line: 48, setting.$wrapperdiv=$('#'+setting.wrapperid).css({position:'relative', visibility:'visible'....
try changing position value absolute
Comments
Post a Comment