Can you combine these selectors into one for ul#footer_navigate:
ul#social_footer li a:link,
ul#social_footer li a:visited {}
I would like the same selector to apply for both anchor states on the ul with ID #footer_navigate.
Is there a different approach to achieve this?
ul#social_footer li a:link,
ul#social_footer li a:visited,
ul#footer_navigate li a:link,
ul#footer_navigate li a:visited {}