I have the following list code which parses some rss. When I hover over each li, the lirss-forum id changes the background color, however the text is then too dark. How can I make the text color of the arss-forum id change when lirss-forum is hovered? $title = $item['title']; $url = $item['link']; $description = $item['description']; print "<li id='lirss-forum'>"; print "<a href=$url id='arss-forum'>$title</a>"; print "<p id='prss-forum'>$description</p>"; print "</li>";
#lirss-forum:hover #arss-forum { color: #HEX_COLOR } Code (markup): Unfortunately IE versions under 7 don't support the :hover pseudo class for other elements than <a>