I'm using a twitter code on my website to display my twitter feed. However the permanent link at the bottom is blue and I'd like to change it to white.
Any ideas?
I'm using a twitter code on my website to display my twitter feed. However the permanent link at the bottom is blue and I'd like to change it to white.
Any ideas?
Can you post the code you have at the moment?
Need to see the HTML to figure out how to do this.
<div id="twitter_div">
<h2 style="display: none;" >Twitter Updates</h2>
<UL style="FONT-FAMILY: Courier New, Courier, Monospace; FONT-SIZE: 10pt" id=twitter_update_list>
<a href="http://twitter.com/user" id="twitter-link" style="display:block;text-align:right;"></a>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/user.json?callback=twitterCallback2&count=1"></script>
Go to your CSS file and add:
Code:#twitter-link{ color:#FFF; }
Sorry, not sure if I have a CSS file..
Look for a file called style.css!
Oh ok, another way to do it, is to add this between the <head> tag on your page:
If you don't know what part I mean, try posting all the code you have for that page and I'll show you where to put it.Code:<style type="text/css"> #twitter-link{ color:#FFF; } </style>
Failing that, you could try just editing the actual style inline (this may not be possible if that code is generated by the twitter script):
Code:<a href="http://twitter.com/user" id="twitter-link" style="display:block;text-align:right;color:#FFF;"></a>
For some reason its just not working.. I've tried that code in the <head> area etc but remains the same..
If you post the code you have so far, I can what's happening.
The only html I have is one page & its huge, is that ok?
<TWITTERNEW>
<div id="twitter_div">
<h2 style="display: none;" >Twitter Updates</h2>
<UL style="FONT-FAMILY: Courier New, Courier, Monospace; FONT-SIZE: 10pt" id=twitter_update_list>
<a href="http://twitter.com/user" id="twitter-link" style="display:block;text-align:right;"></a>
</div>
<script type="text/javascript" src="http://twitter.com/javascripts/blogger.js"></script>
<script type="text/javascript" src="http://twitter.com/statuses/user_timeline/user.json?callback=twitterCallback2&count=1"></script><TWITTERNEW>
This is the code displaying the feed.
Last edited by tracked1; 12-16-2010 at 10:14 PM.
Bookmarks