Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / right hand column in product layout align to top

right hand column in product layout align to top

Views: 869

Results 1 to 4 of 4
14 Mar 2011, 6:48 PM
#2
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: right hand column in product layout align to top

in /includes/templates/business_orange/css/stylesheet.css

find

.left-side-info {
	width: 180px;
	vertical-align: top;
}

change to:

td .left-side-info {
	width: 50%;
	vertical-align: top;
}
td .right-side-info {
	width: 50%;
	vertical-align: top;
}

Hope this helps!

16 Mar 2011, 7:26 PM
#3
bn17311 avatar

bn17311

Zen Follower

Join Date:
Apr 2010
Posts:
319
Plugin Contributions:
0

Re: right hand column in product layout align to top

worked a treat, thank you very much

bryan

16 Mar 2011, 7:36 PM
#4
rbarbour avatar

rbarbour

Totally Zenned

Join Date:
Feb 2010
Posts:
2,159
Plugin Contributions:
10

Re: right hand column in product layout align to top

np, glad to help!