Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Line after each item in cart?

Line after each item in cart?

Locked

Views: 2,089

Results 1 to 11 of 11
This thread is locked. New replies are disabled.
4 Feb 2008, 10:33 PM
#1
julieoolie avatar

julieoolie

Zen Follower

Join Date:
Jul 2006
Location:
Southern California
Posts:
109
Plugin Contributions:
0

Line after each item in cart?

I have all my rows in the shopping cart one color and would like to put a line after the items to seperate them. I tried adding:

border-bottom: 1 solid #cccccc;

to the .rowOdd in the stylesheet but it didn't do anything. Is there another way to go about this?

4 Feb 2008, 10:45 PM
#2
misty avatar

misty

Inactive

Join Date:
Apr 2004
Location:
UK
Posts:
5,752
Plugin Contributions:
1

Re: Line after each item in cart?

Try

border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #cccccc;
 } 
 
4 Feb 2008, 10:57 PM
#3
julieoolie avatar

julieoolie

Zen Follower

Join Date:
Jul 2006
Location:
Southern California
Posts:
109
Plugin Contributions:
0

Re: Line after each item in cart?

It didn't work :(

4 Feb 2008, 10:58 PM
#4
kobra avatar

kobra

Black Belt

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

Re: Line after each item in cart?

Try adding to this entry:

.cartProductDisplay, .cartUnitDisplay, .cartTotalDisplay, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, #cartInstructionsDisplay, .cartTotalsDisplay   {
	padding: 0.5em 0em;
        border-bottom: solid 1px #cccccc;
	}
4 Feb 2008, 11:09 PM
#5
julieoolie avatar

julieoolie

Zen Follower

Join Date:
Jul 2006
Location:
Southern California
Posts:
109
Plugin Contributions:
0

Re: Line after each item in cart?

It worked!! Thank you!

Do you happen to know how I'd put a border around the product photos in the cart?

5 Feb 2008, 12:31 AM
#6
kobra avatar

kobra

Black Belt

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

Re: Line after each item in cart?

Do you happen to know how I'd put a border around the product photos in the cart?
Link or directions to get to this page

5 Feb 2008, 12:52 AM
#8
kobra avatar

kobra

Black Belt

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

Re: Line after each item in cart?

Try This

.cartProductDisplay img {
        border: 1px solid #000000;
}
5 Feb 2008, 12:57 AM
#9
julieoolie avatar

julieoolie

Zen Follower

Join Date:
Jul 2006
Location:
Southern California
Posts:
109
Plugin Contributions:
0

Re: Line after each item in cart?

It didn't work :(

5 Feb 2008, 1:09 AM
#10
kobra avatar

kobra

Black Belt

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

Re: Line after each item in cart?

Refresh you browser or clear it's cache...but first add the code to your stylesheet
Because it does work

5 Feb 2008, 1:14 AM
#11
julieoolie avatar

julieoolie

Zen Follower

Join Date:
Jul 2006
Location:
Southern California
Posts:
109
Plugin Contributions:
0

Re: Line after each item in cart?

It did work, sorry about that :blush: and thank you again! :smile: