Anyone know or have the code/css to add the twitter logo in front of the feed in this plugin? Looking to add it to the left hand side in front of the tweet steam?
thanks
Anyone know or have the code/css to add the twitter logo in front of the feed in this plugin? Looking to add it to the left hand side in front of the tweet steam?
thanks
If you add the following to your CSS, it puts a blue bird to the left of your tweets:
/* Makes a bird appear to the left of your tweets - you can find more birds at https://dev.twitter.com/docs/image-resources */
div.rotatingtweet {
background-image: url('https://dev.twitter.com/sites/default/files/images_documentation/bird_blue_32.png');
background-repeat:no-repeat;
background-position:left top;
padding-left: 38px;
}
As the code says, you can find more birds at https://dev.twitter.com/docs/image-resources.
Is this what you had in mind?
You must log in to post.