E-Junkie Forum http://www.e-junkie.com/bb/ E-Junkie Forum RSS en-us Copyright 2013, 19.5 Degrees. All rights reserved. webmaster@e-junkie.com webmaster@e-junkie.com Tue, 8 Feb 2011 14:21:53 GMT Wed, 22 May 2013 23:52:31 GMT 681 E-JUNKIE 5 E-Junkie Forum http://www.e-junkie.com/bb/ http://www.e-junkie.com/ej/logo.gif 290 104 Post #3 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 Tue, 8 Feb 2011 14:21:53 GMT E-junkie Discussions; Coyx Post #2 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 Mon, 7 Feb 2011 22:55:13 GMT
That border appears to be coming from your site's CSS; in http://lite-sites.co.cc/templates/litesites/css/template.css you have this declaration:

input{
border: 1px solid #999;
}

You can just remove that (which would remove the border from ALL form inputs in your site), or you can override it for all form-submission buttons on your site by adding this to your CSS file, below the section given above:

input[type="image"]{
border: none;
}

...or you can override it for just the one button itself by adding a style="border:none;" attribute to that button's input tag like so:

<input src="/images/addtocart.png" style="border:none;" border="0" type="image" onclick="javascript:return EJEJC_lc(this.parentNode);">]]>
E-junkie Discussions; E-junkieGuru
Post #1 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 http://www.e-junkie.com/bb/topic/4993/pg/0#post16786 Mon, 7 Feb 2011 15:23:34 GMT
Unfortunately, there's an obscure white border around the Add to Cart button, which isn't there on my PNG's, nor in the code... >_>

http://lite-sites.co.cc/order-lite.php - where the button is located.

The Add to Cart code.

<input type="image" src="/images/addtocart.png" border="0" onClick="javascript:return EJEJC_lc(this.parentNode);">

The View Cart code.

<a href="https://www.e-junkie.com/ecom/fgb.php?c=cart&cl=1&ejc=2&
business=EMAIL ADDRESS" target="ej_ejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="/images/viewcart.png" border="0"></a>

The buttons.

http://lite-sites.co.cc/images/addtocart.png
http://lite-sites.co.cc/images/viewcart.png

Can anyone help me nail this weird border?

Thanks!]]>
E-junkie Discussions; Coyx