View Full Version : Hope someone can help..
tracked1
12-16-2010, 05:55 PM
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?
Schmoopy
12-16-2010, 06:29 PM
Can you post the code you have at the moment?
Need to see the HTML to figure out how to do this.
tracked1
12-16-2010, 06:44 PM
<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>
Schmoopy
12-16-2010, 07:22 PM
Go to your CSS file and add:
#twitter-link{
color:#FFF;
}
tracked1
12-16-2010, 08:55 PM
Sorry, not sure if I have a CSS file..
Cladon
12-16-2010, 08:58 PM
Look for a file called style.css!
Schmoopy
12-16-2010, 08:58 PM
Oh ok, another way to do it, is to add this between the <head> tag on your page:
<style type="text/css">
#twitter-link{
color:#FFF;
}
</style>
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.
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):
<a href="http://twitter.com/user" id="twitter-link" style="display:block;text-align:right;color:#FFF;"></a>
tracked1
12-16-2010, 09:49 PM
For some reason its just not working.. I've tried that code in the <head> area etc but remains the same..
Schmoopy
12-16-2010, 09:59 PM
If you post the code you have so far, I can what's happening.
tracked1
12-16-2010, 10:05 PM
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.
Schmoopy
12-16-2010, 10:06 PM
As long as you put it in [ CODE ] tags. It's the only way to see what's really going on.
Powered by vBulletin® Version 4.2.2 Copyright © 2021 vBulletin Solutions, Inc. All rights reserved.