How would I go around adding a style the < /a > on the menu? Around them is styled but not the actual link, so the look is off. I’d also need to do a separate style for the footer links too.
I’ve read somewhere that i’d need to create a custom walker, is this correct? Seems a bit of work just to change the styling on the < a >?
You shouldn’t need to create a custom walker just to style the <a> tags in your menu, unless you have a very unusual requirement. You should just be able to target the <a> tags that belong to your menu:
.main-navigation a {
... CSS goes here ...
}
substituting the appropriate class or ID. Can you post a link to your site?