Benim blogda girerseniz görecekseniz, twitter.com'dan aldığım widget kodunu sidebara ekledim fakat, görüntü istediğim gibi değil. widget arkaplanı çıkıyor, gerçek isminin yazdığı yerde.

kırmızı ile işaretlediğim bölümü kaldırmak istiyorum.
<?php/** * @package WordPress * @subpackage Default_Theme */?><div id="sag"><div class="cleared"></div>
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 3,
interval: 6000,
width: 250,
height: 300,
theme: {
shell: {
background: '#333333',
color: 'green'
},
tweets: {
background: '#000000',
color: 'red',
links: '#4aed05'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('teknoveled').start();
</script>
<div class="cleared"></div><h3>Kategoriler</h3><ul class="glossymenu"> <?php wp_list_categories('title_li='); ?></ul>
<div class="cleared"></div>
<h3>Son Yorumlar</h3>
<?php global $wpdb; $sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved, comment_type,comment_author_url, SUBSTRING(comment_content,1,30) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10"; $comments = $wpdb->get_results($sql); $output = $pre_HTML; $output .= "\n<ul>"; foreach ($comments as $comment) { $output .= "\n<li>".strip_tags($comment->comment_author) .":" . "<a href=\"" . get_permalink($comment->ID) . "#comment-" . $comment->comment_ID . "\" title=\"on " . $comment->post_title . "\">" . strip_tags($comment->com_excerpt) ."</a></li>"; } $output .= "\n</ul>"; $output .= $post_HTML; echo $output;?>
<div class="cleared"></div>
<div class="cleared"></div>
<div class="cleared">
</div><h3>Bizimkiler</h3>
<div class="baglanti"><li>
<a href="http://teknoveled.com" title="teknoveled.com - aklıma ne gelirse!"><img src="/blog/wp-content/themes/okblue/images/tekno.png" width="29" height="29" alt="" /> </a></li>
<li><a href="http://www.osmankus.com/" title="OsmanKus.Com ~ Yeni Jenerasyon İnsan..."><img src="http://www.osmankus.com/okus.gif" width="29" height="29" alt="" /> </a></li>
<li><a href="http://sumeshurdomuztribi.blogspot.com" title="siyahalınıpdalacivertçıkançorap"><img src="/blog/wp-content/themes/okblue/images/domuztribi.png" width="29" height="29" alt="" /> </a></li>
<li><a href="http://fuub.net" title="Fuub - Bir avuç webmaster!"><img src="http://i39.tinypic.com/5pndp0.png" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li>
<li><a href="#" title="Linkini ekle!"><img src="" width="29" height="29" alt="" /> </a></li></div></div>sidebar kodları bunlar. yeşil ile yazılan bölümde twitter'dan aldığım kodlar.teşekkürler..