I'd like to be able to remove the TWITTER image from the tweetblender sidebar is this possible? Also how do I remove the twitter account name. I don't need it to show up before the tweet text. Thank you in advance.
I'd like to be able to remove the TWITTER image from the tweetblender sidebar is this possible? Also how do I remove the twitter account name. I don't need it to show up before the tweet text. Thank you in advance.
Both of these can be hidden via CSS:
1) Twitter logo can be removed via CSS by including the following into your theme's stylesheet
#tbheader {
display: none;
}
2) twitter account name can be hidden by including the following:
span.tb_author {
display: none;
}
Make sure your theme's style sheet is loaded after tweet blender's stylesheet in the <head> element of your pages.
Awesome. That worked perfect. Thank you for your help!
I upgraded to the latest version and now the "twitter" graphic is showing back up again. How do I remove that twitter image from the sidebar widget? Thanks again.
Each upgrade overrides tweets.css so if you made changes in that file directly then they would be lost. It's better to make changes in your theme's CSS file as that stays the same unless you upgrade the theme (which usually happens much less frequently).
This topic has been closed to new replies.