Apply a style to all elements
* {
margin: 0;
padding: 0;
border: 0;
}
Multiple Class Names
Apply style to different classes
Comma seperate them
.my_menu_rss a, .my_menu_rss a:hover {
Apply style to elements which have all the specified classes
.my_menu_rss a.my_menu_rss a:hover {
(Note there is NO comma between them)
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.