quick CSS question on Ajax Scroller
- jase700
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
12 years 10 months ago #6454
by jase700
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?
Also, in the twitter messages that come through on my site, the URLs don't work. Any quick fix?
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
12 years 10 months ago #6455
by Saka
Emir Sakic
www.sakic.net
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:
As for URLs from Twitter, be sure you use Twitter XML API interface, not just the RSS interface.
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:
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.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.