I'm currently facing a challenge in Wordpress where I need to insert a link quickly, but there are intricate styles applied to all the anchor links within a specific section. Here is a snippet of the CSS selector and styles being used:
div.content-rotator li.featured-content a {
margin: 0px;
border: 1px solid rgb(34,56,19);
}
Is there a way for me to add a link inside this li element and override the existing style? The link needs to be placed within the li that has the class featured-content. I don't want to modify the current CSS right now, so I would prefer to apply inline styles directly to the anchor element.
Thank you
EDIT: Just to clarify, the CSS mentioned above is from the external stylesheet and I am looking to reset these styles. However, the CSS file contains over 50 lines of code, so replacing all of them with inline styles is not feasible.