Zen Cart Logo
Forums / Basic Configuration / Outline around buttons

Outline around buttons

Locked

Views: 693

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
13 Nov 2010, 10:20 PM
#1
mzunderstood avatar

mzunderstood

New Zenner

Join Date:
Nov 2010
Location:
UK
Posts:
17
Plugin Contributions:
0

Outline around buttons

HI I am using the latest version of zen and it's a fresh install. When I intsalled an earlier version some time ago I found somewhere here in the forum how to remove the outline around the add to cart button.

Of course now I need this I can't find it anywhere and several searches have proved fruitless. I have a feeling it was something in admin but I could be wrong. Can anyone point me in the right direction please?
TIA

http://www.scrapdragondesigns.co.uk/store/index.php?main_page=product_info&cPath=13&products_id=2

13 Nov 2010, 10:23 PM
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: Outline around buttons

Find this in your templates stylesheet.cs file and remove the border

#cartAdd {
	float: right;
	text-align: center;
	margin: 1em;
	border: 1px solid #000000;
	padding: 1em;
	}
13 Nov 2010, 10:25 PM
#3
nigelt74 avatar

nigelt74

Totally Zenned

Join Date:
Sep 2005
Location:
Waikato, New Zealand
Posts:
1,558
Plugin Contributions:
1

Re: Outline around buttons

In your stylesheet find

#cartAdd {
float: right;
text-align: center;
margin: 1em;
border: 1px solid #000000;
padding: 1em;
}

replace with

#cartAdd {
float: right;
text-align: center;
margin: 1em;
padding: 1em;
}