Hello. I'm using the Muffin Recent Post widget in my sidebar. I wanted to disable the mouseover animation so I used the following css:
.Recent_posts ul li .desc::after { display: none; }
However, on mouseover of a post, the text/link still turns white and I have a white background so I wish to change the text color but can't figure out how.
Thank you!
Comments
please send a link to this page.
thanks
.Recent_posts ul li a h6, .Recent_posts ul li a .desc .date, .Recent_posts ul li a .desc::after {transition: none !important;
}
.Recent_posts ul li a:hover h6, .Recent_posts ul li a:hover .desc .date {
color: #a8a8a8 !important;
}
.Recent_posts ul li .desc::after {
background-color:white !important;
}