caughtredhanded
Member
Posted 2 years ago #
I have added a Twitter feed to my blog which shows the last five tweets I've made. Great. I've updated my stylesheet so that @tags and the like appear how I want them to. Great.
On my home page everything displays as should, but when you click onto a post, all the links turn blue, and I have no idea why. I have trawled through my stylesheet, but can't see anything that may be overriding my desired configuration.
Anybody got any ideas? Blog is here.
Thanks!
these styles from style.css seem to overwrite your twitter link style:
#post_content p a, #arch_content p a, .post_meta a { color: /*#224970;*/#3a6999; }
#post_content p a:hover, #arch_content p a:hover { color: #000; text-decoration: underline; }
you could try and force your styles:
a.twitter-user { color: #c93b3b!important; font-weight:bold; }
a.twitter-link { color: #020202!important; font-weight:bold; }
caughtredhanded
Member
Posted 2 years ago #
You're an absolute genius, cheers!