I am new to developing web pages. I am looking to create menus similar to the ones in stackoverflow.com (like Questions, Tags, Users shown above). How do I change the color
There is a pure CSS solution I'm currently using.
Add a body ID (or class) identifying your pages and your menu items, then use something like:
HTML:
Question Tags Users ...
CSS:
.menu li:hover, #body_questions #questions, #body_tags #tags, #body_users #users { background-color: #f90; }