css to make image change on hover that does not blow layout apart.
First off, I'm using the DW starter template called "Responsive About page" So most of the css came with the template.
There is a big circular graphic (called .profilePhoto in the Css) on the left side of the page with text alongside on the right.
I have three pages all with the same layout and the same size circular picture in the same place on each page.
But, I've made the circular pic on the index page link through to another one of the pages. It's the only one of the three pages where that circular image is actually a live graphical link to somewhere else.
But I want that index page one only, to change on hover to a different graphic to make it obvious that it is a live link.
I've created the graphics I need.
I've tried various things suggested by various css websites. Some of them even work. But nothing works without blowing the layout of the page part. The text on the right disappears from its place.
I'm thinking there must be something in the css I don't understand. I'll post the css that relates and maybe someone here could tell me how to change it so that I could use it to make just the index page behave differently to the other pages.It's here:
header .profilePhoto {
background-color: rgba(237,237,237,1.00);
width: 259px;
border-radius: 50%;
height: 259px;
clear: both;
}
And the html that relates to it is here:
<div class="profilePhoto">
<!-- Profile photo -->
<a href="pagefiles/tivo.html"><img src="images/tivocircle.png" alt="Tivo"></a>
<p><a href="pagefiles/tivo.html">Tivo Upgrades</a></p>
</div>
This is what the page looks like

