Hi all,
I'm attempting to change the default Proceed to Checkout button in the View Cart page to a button that I made where it has a regular image, then a brightened mouseover image.
When searching for an answer on the forum, I found a helpful article by fellow 3D Cart user Mondo from back in May last year where he details how he changed the buttons on his site.
In particular, I believe it's where he explains this:
"TOP CHECKOUT BUTTON:
<input type="button" onclick="window.location='checkout.asp?step=1'" value="[viewcart_checkout-button]" class="btn" onMouseOver="this.className='btn_over'" onMouseOut="this.className='btn'">
TO:
<input type="image" onclick="window.location='checkout.asp?step=1'" src="assets/images/default/btnbegincheckout3.png" border="0" alt="Continue shopping">"
And this:
BOTTOM CART CHECKOUT BUTTON:
<td valign="top"><input type="button" onclick="window.location='checkout.asp?step=1'" value="[viewcart_checkout-button]" class="btn" onMouseOver="this.className='btn_over'" onMouseOut="this.className='btn'" id="Button7" name="Button7"></td>
TO:
<a onclick="window.location.href='checkout.asp?step=1 '" id="Button7" name="Button7" style="pic"href="#""><img src="assets/images/default/btnbegincheckout.png" border="0" alt="Begin checkout"></a>
My question is, when I'm trying to do this, I don't know how to implement it with the mouseover image involved. I tried something and it didn't work out so well, and also wouldn't let me go back to the View_Cart.asp page once I hit the button and went to the the Checkout_1 page.
Am I correct that the file I'm trying to change is "View_Cart.html"? And also, any advice on how to blend Mondo's suggestion with a mouseover image?
Thank you in advance for any assistance, suggestions, or advice!
-James
I'm attempting to change the default Proceed to Checkout button in the View Cart page to a button that I made where it has a regular image, then a brightened mouseover image.
When searching for an answer on the forum, I found a helpful article by fellow 3D Cart user Mondo from back in May last year where he details how he changed the buttons on his site.
In particular, I believe it's where he explains this:
"TOP CHECKOUT BUTTON:
<input type="button" onclick="window.location='checkout.asp?step=1'" value="[viewcart_checkout-button]" class="btn" onMouseOver="this.className='btn_over'" onMouseOut="this.className='btn'">
TO:
<input type="image" onclick="window.location='checkout.asp?step=1'" src="assets/images/default/btnbegincheckout3.png" border="0" alt="Continue shopping">"
And this:
BOTTOM CART CHECKOUT BUTTON:
<td valign="top"><input type="button" onclick="window.location='checkout.asp?step=1'" value="[viewcart_checkout-button]" class="btn" onMouseOver="this.className='btn_over'" onMouseOut="this.className='btn'" id="Button7" name="Button7"></td>
TO:
<a onclick="window.location.href='checkout.asp?step=1 '" id="Button7" name="Button7" style="pic"href="#""><img src="assets/images/default/btnbegincheckout.png" border="0" alt="Begin checkout"></a>
My question is, when I'm trying to do this, I don't know how to implement it with the mouseover image involved. I tried something and it didn't work out so well, and also wouldn't let me go back to the View_Cart.asp page once I hit the button and went to the the Checkout_1 page.
Am I correct that the file I'm trying to change is "View_Cart.html"? And also, any advice on how to blend Mondo's suggestion with a mouseover image?
Thank you in advance for any assistance, suggestions, or advice!
-James
Comment