I downloaded this jquery plugin in order to show my tweets on my website. However, I need to add a line break between each tweet as they are currently too close together. Please can you tell me how I can do this?
Here is my code so far:
<script type="text/javascript">
jQuery(function($){
$("#twitter").tweet({
username: "so",
avatar_size: 0,
count: 2,
loading_text: "loading tweets..."
});
});
</script>
<div id="twitter" style="color: white;">
</div>
It looks as if the tweets are added in an unordered list, so you can do it in css: