Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

I've made text widget on right sidebar and have inserted object tag inside it to show flash animation. Code is:

<object width="225" height="150"
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
<param name="SRC" value="bookmark.swf">
<embed src="baner.swf" width="225" height="150"></embed>
</object>

It looks like: enter image description here Like you can see there is no white space in calendar widget, just in text widget. How to remove this white space at the bottom of text widget? Or I have to make my own widget and to style it with css?

share|improve this question

closed as off topic by toscho Oct 16 '12 at 16:09

Questions on WordPress Answers are expected to relate to WordPress within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

You probably have your text wrapped in a p tag, uncheck the wrap in paragraphs checkbox in the widget backend and make sure you have no extra spaces or lines.

Failing that please inspect the widget using your browsers developer tools to detect any padding or margins around your flash object.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.