SITUATION: I have inherited a messy website from a previous web developer. The website contains thousands of images, each wrapped in an anchor tag that links to the image's own path:
<a href="http://www.websitename.com/image_path.jpg">
<img src="http://www.websitename.com/image_path.jpg" />
</a>
This page displays each image full-size in the top left corner with white space around it. It seems that this page is missing the dynamic header information present on the rest of the website.
INQUIRY: Can this page be styled? Is there a way to add a stylesheet to the header? Or is this impossible? If styling is not possible, is there a workaround to modify the anchor tags using jQuery or JavaScript?