I have the following markup which is just a small portion of the total markup.
<div align="center">
<img src="v/vspfiles/templates/100/images/headings/heading_shoppingcart.gif">
</div>
<br><br>
I would like to remove the two <br> tags.
Note: there are other <br> tags on the page both before this and after this that I do not want to removed.
I thought of using a selector to target the div by the src which contains heading_shoppingcart.gif and something like .after and then .remove the <br>.
Unsure of the correct syntax or if there is a better/easier way to do it.