Hey guys,
I am having a problem getting the Twitter Tools to display correctly on my blog's sidebar.
here is the code I have so far
<?php if (function_exists('aktt_sidebar_tweets')) : ?>
<div class="dbx-box">
<h3 class="dbx-handle" title="Latest Tweets">Latest Tweets</h3>
<ul class="dbx-content">
<?php aktt_sidebar_tweets(); ?>
</ul>
</div>
<?php endif; ?>
The problem I am having, as you can see, is there are ul li /ul tags inside the aktt_sidebar_tweets function, and the dbx_content. I have tried changing the ul li tags to div tags, that didn't work. The problem is the ul li tags that are in the aktt_sidebar_tweets function, are pushing the twitter text too far over to the right, so I was wondering if there was a CSS tag, that would prevent the text from pushing too far over to the right side?
because I tried removing the ul li tags from within the plungin itself, but the plugin breaks :( so I don't know how to fix this?