I want to be able to display this items horizontally, but I've unable to do it with the CSS inserts.
This is the code generated by the plugin (inside a custom widget):
Code:
<div id="tumblr_widget_area" class="bfa_widget_area"> <div id="tumblr-widget-3" class="widget Tumblr"> <div id="Tumblr_List"> /* This line was added by me, by editing the plugin code. */ <ul> <li class="tumblr_post video"><object width="100" height="81.5"><param name="movie" value="http://www.youtube.com/v/0pemlKXKQXM&rel=0&egm=0&showinfo=0&fs=1"><param name="wmode" value="transparent"><param name="allowFullScreen" value="true"><embed src="http://www.youtube.com/v/0pemlKXKQXM&rel=0&egm=0&showinfo=0&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" width="100" height="81.5"></object><br><p><a href="http://hrfavorites.tumblr.com/post/1469167109" class="tumblr_link">11/03/10</a></p> </li> <li class="tumblr_post photo"><a href="http://26.media.tumblr.com/tumblr_l6pgw2iOI81qcl834o1_500.jpg"><img src="http://28.media.tumblr.com/tumblr_l6pgw2iOI81qcl834o1_100.jpg"></a><br><p><a href="http://hrfavorites.tumblr.com/post/1469144441" class="tumblr_link">11/03/10</a></p> </li> </ul> </div> /* This line was added by me, by editing the plugin code. */ </div> </div>
Code:
#Tumblr_List ul {margin: 0; padding: 0; list-style-type: none; list-style-image: none; } #Tumblr_List li {display: inline; }

As you can see, the first CSS line is doing nothing, and the second one, for some reason it just displays the gray padding on the left of each item with a less height (normally the gray padding has the same height of each item).
I'm not sure what am I doing wrong here. Could anyone please give me some pointers on this matter?