DP's category forum advertising articles blog..... PHP: how do to do that? when mouse over link that become white color
You should use pseudo class. I give you example. Simple html: <a href="forum">forum</a> <a href="advertising">advertising</a> <a href="articles">articles</a> <a href="blog">blog</a> Code (markup): Simple css: a:hover { color: white; } Code (markup): If you know class'es and id's, you should understand how improve that.
So, you have links, right? If you want to text link colour change to white when mouse pointer is over link, you will use: css a:hover { color: white; } Code (markup): That don't work for you? Or work? Let me know and I try to help you more.