Thanks for the response, James.
I'm good with repositioning the container and changing the text size, the problem I'm having is with aligning the background and hover background of the button after adjusting its size. I've change the button.png from its original size of 500x240px to 300x144px. I've attempted to manipulate the alignment values of the following (style2.css):
.big_button strong{
background: transparent url('../images/skin2/button.png') no-repeat right -60px !important;
background: transparent url('../images/skin2/button.png') no-repeat right -59px; /*ie6 bugfix*/
color: #fff;
}
.big_button:hover{
background: transparent url('../images/skin2/button.png') no-repeat left -120px !important;
background: transparent url('../images/skin2/button.png') no-repeat left 0px; /*ie6 bugfix*/
}
.big_button:hover strong{
background: transparent url('../images/skin2/button.png') no-repeat right -180px !important;
background: transparent url('../images/skin2/button.png') no-repeat right -60px; /*ie6 bugfix*/
}
but, I also see that by changing these above values, the following also needs changing:
style.css lines 352-362
I cannot get the background and hover background images to align properly with the smaller sized button (even with keeping it in its original position). Been pulling my hairs out with this one and really this is where I need the assistance.
The site is maintenance mode right now, so I can't point you to a live URL.
Thanks again,
John