That’s a surprise! What happens if you add:
.rotatingtweet a {color:white;}
at the beginning of the list?
And, if that doesn’t work, can you send me a link?
Thread Starter
Mike
(@iskon47)
Wow, unbelievably fast response haha. Thank you so much!
I added that in but not sure if I added it to the correct area as nothing changed. Not very familiar with CSS.
I emailed you the link.
All very odd.
When this happens I normally end up trying more and more specific selectors until I get the result I want!
So first I try:
div.rotatingtweet a {color:white;}
then
div.rotatingtweet p.rtw_main a {color:white;}
then
div.rotatingtweet p.rtw_main a {color:white !important;}
although it might also be worth trying:
div.rotatingtweet a {color:white !important;}
Thread Starter
Mike
(@iskon47)
It worked! I made it div.rotatingtweet a {color:gray !important;} to match the rest of the layout. Thank you so much!
I had to leave in the code below though as even though everything just remains gray regardless of mouse hover, clicks, etc. (which I don’t mind, that’s how I’d prefer it) when I removed this code it reverted back to the issue.
.rotatingtweet a:link {color:white;} /* unvisited link */
.rotatingtweet a:visited {color:white;} /* visited link */
.rotatingtweet a:hover {color:white;} /* mouse over link */
.rotatingtweet a:active {color:white;} /* selected link */
Just figured I’d mention that in case other people had a similar issue but wanted the changing colors.
Thanks again and amazing app!