T
Tirinoarim
Guest
Please help! I'd be tearing my hair out if I had any left!
I'm trying to write a paypal gallery with built in shopping cart and all is working fine except the pop-up cart is NOT appearing correctly. It would seem this is entirely due to Lightroom tagging all my css with "!important". (Manually removing these and reloading the site and all works fine!).
What (if anything!) can I add to my appearance model entries to stop the "!important" tags being generated?
at the moment I have this...
Which generates this in the CSS file...
but to work, it needs to be this...
I've tried things like
but just cant get rid of them!!
I'm trying to write a paypal gallery with built in shopping cart and all is working fine except the pop-up cart is NOT appearing correctly. It would seem this is entirely due to Lightroom tagging all my css with "!important". (Manually removing these and reloading the site and all works fine!).
What (if anything!) can I add to my appearance model entries to stop the "!important" tags being generated?
at the moment I have this...
Code:
<mx:Model id="appearance">
<dimmer>
<cssID>.Dimmer</cssID>
<top>'px</top>
<left>'px</left>
<width>1px</width>
<height>1px</height>
<font-family>verdana</font-family>
<visibility>hidden</visibility>
<position>absolute</position>
<background-image>url(Gray.png)</background-image>
</dimmer>
</mx:Model>
Which generates this in the CSS file...
Code:
.Dimmer {
background-image: url(Gray.png) !important;
left: 'px !important;
width: 1px !important;
top: 'px !important;
position: absolute !important;
height: 1px !important;
font-family: verdana !important;
visibility: hidden !important;
}
but to work, it needs to be this...
Code:
.Dimmer {
background-image: url(Gray.png);
left: 'px;
width: 1px;
top: 'px;
position: absolute;
height: 1px;
font-family: verdana;
visibility: hidden;
}
I've tried things like
Code:
<top important="false">'px</top>
but just cant get rid of them!!
