Archived topic
How to fix widget dropping outside it's own designated box in right side widget
3 replies · Started by Carl on March 12, 2022
I have a widget for Jaaxy Keyword Search tool that has a real-time keyword search display that keeps changing in length and pushing down and outside of its own [container] box and into the [container] box of the next widget below it. It is changing the size of the widget box below, but not is own [container].
What can I do to keep this banner working inside it's own container, and push the [container] box below, without overlapping and changing the [container] box size of the one below it, instead of changing it's own container.
I would like to see it stay inside it's own [container] and act responsively. Is this possible?
I have included my URL to help you understand. Scroll down to see how my "Jaaxy banner" is acting.
Thank you,
Carl
Hi there,
might be worth checking with the plugin author if there are any other settings as it uses some inline styles and some weird margins.... in the meantime give this CSS a shot:
div[id*="jaaxy_plugin"] {
float: none !important;
border-width: 0 !important;
}
div[id*="jaaxy_plugin"] .plugin-container {
margin: 0 !important;
}
Hi David,
That did the trick! It looks very nice now. And it is responsive as well, perfect!
You Guys are the best!
Thank you.
Have a great weekend!
Carl
Glad we could be of help