|
OK JD. Thats kinda what I expected.
Let me ask you this then. Right now each button has a div in the text widget containing a "button_blank". Then I have code in "Add HTML/CSS". Like so:
<div
id="Button2">
<a href="http://mylink" target= "_self"><img src="./wp-content/themes/atahualpa353/images/Button2_blank.gif" ></a>
</div>
/*---------------- MY BUTTON2 button CSS - START --------------*/
div#Button2 {z-index: 4; position: top left; float: left; width: auto; margin-right: 0px; margin-left: 145px;
margin-top: 10px;
}
div#Button2 {
height: 90px; width: 90px; border-width: 0; z-index:999;}
div#Button2 img {
background: url(./wp-content/themes/atahualpa353/images/Button2_normal.png) top left no-repeat;}
div#Button2 :hover img {
background: url(./wp-content/themes/atahualpa353/images/Button_hover.png) top left no-repeat;
}
All three button views are 90X90. Is there a way to have the "hover" view much larger without having the blank larger? In other words, I would like to be able to have the hover active only within the 90x90 size of the normal view, but once active, the hover image would be a much larger. image.
|