Hey,
http://www.airlinestaffrates.com/deal-finder-widget/
I have added this code to quick css:
.dealwidget300 {
width: 300px !important;
}
and “dealwidget300” to Custom css for each column but it is not working…
What have I done wrong?
Thanks
Charlotte
Hey Charlotte,
Thanks for getting in touch with us!
The elements with the deal find that you gave the custom class to is already 300px in width. Your custom class is added and works but for the deals to not be cut off try the following:
.dealwidget300 iframe {
width: 350px !important;
}
Best regards,
Jordan
Thanks Jordan but I want it to be 300px wide and when I change to 300 px in this code and the code in the column it does not work…
What I am doing wrong?
Thanks
Charlotte
Hi,
The widget applies an inline style in the container inside the iframe that we can’t override in any external stylesheets:
<div id="container" style="height:400px; width:350px;">
// other content here</div>
Please ask the plugin author if we can override that style via filter or something else.
Best regards,
Ismael
Hi Jordan.
No, that does not work either. They still get cut off –
Aha.. ok, thanks..