Author Topic: quick CSS question on Ajax Scroller  (Read 326 times)

jase700

  • Newbie
  • *
  • Posts: 2
    • View Profile
quick CSS question on Ajax Scroller
« on: 05 January 2012, 01:38 »
I would like to 'decorate' my links like you do on your Twitter examples so that the URLs can have color and be live.  A sample CSS tag would be welcome.

Also, in the twitter messages that come through on my site, the URLs don't work.  Any quick fix?

Saka

  • Administrator
  • Hero Member
  • *****
  • Posts: 2,495
    • View Profile
    • Sakic.Net
Re: quick CSS question on Ajax Scroller
« Reply #1 on: 05 January 2012, 02:16 »
Hi,

Don't know which decoration you mean. On my demo site the links are decorated by the template, although you can change it within the module CSS too if you like.
The links on my demo site:
Code: [Select]
a {
    color: #336699;
    text-decoration: none;
}
a:hover, a:active, a:focus {
    text-decoration: underline;
}

As for URLs from Twitter, be sure you use Twitter XML API interface, not just the RSS interface.