Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: Hope someone can help..

  1. #1
    Join Date
    Dec 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Hope someone can help..

    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?

  2. #2
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    Can you post the code you have at the moment?

    Need to see the HTML to figure out how to do this.

  3. #3
    Join Date
    Dec 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    <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&amp;count=1"></script>

  4. #4
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    Go to your CSS file and add:

    Code:
    #twitter-link{
    color:#FFF;
    }

  5. #5
    Join Date
    Dec 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry, not sure if I have a CSS file..

  6. #6
    Join Date
    Dec 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Look for a file called style.css!

  7. #7
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    Oh ok, another way to do it, is to add this between the <head> tag on your page:

    Code:
    <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):

    Code:
    <a href="http://twitter.com/user" id="twitter-link" style="display:block;text-align:right;color:#FFF;"></a>

  8. #8
    Join Date
    Dec 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    For some reason its just not working.. I've tried that code in the <head> area etc but remains the same..

  9. #9
    Join Date
    Sep 2008
    Location
    Bristol - UK
    Posts
    842
    Thanks
    32
    Thanked 132 Times in 131 Posts

    Default

    If you post the code you have so far, I can what's happening.

  10. #10
    Join Date
    Dec 2010
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    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&amp;count=1"></script><TWITTERNEW>

    This is the code displaying the feed.
    Last edited by tracked1; 12-16-2010 at 10:14 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •