Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / customize product listing table

customize product listing table

Locked

Views: 1,425

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
11 Aug 2009, 11:20 AM
#1
pascal020 avatar

pascal020

New Zenner

Join Date:
Aug 2009
Posts:
43
Plugin Contributions:
0

customize product listing table

Hello,

I'm trying to customize the product listing table, because it's pushing the right table out the collum.

see here:
http://www.dlsounds.com/music/index.php?main_page=index&cPath=1

Anyone knows where and how to fix this?
I already tried tpl_modules_product_listing.php but no luck!

note! we're using a music add on
Many thanks!

11 Aug 2009, 1:14 PM
#2
kuroi avatar

kuroi

Totally Zenned

Join Date:
Apr 2006
Location:
London, UK
Posts:
10,475
Plugin Contributions:
11

Re: customize product listing table

The structure of that template bears no resemblance to Zen Cart's standard structure which will make it very hard to answer your question - basically we'd have to learn about the structure of the resulting page and then guess at how your template provider has achieved that. I recommend going straight to the template provider.

11 Aug 2009, 1:23 PM
#3
gjh42 avatar

gjh42

Black Belt

Join Date:
Jul 2005
Location:
Upstate NY
Posts:
21,876
Plugin Contributions:
8

Re: customize product listing table

Your stylesheet_tm.css has

.center_indent { 
    padding:10px 15px 15px 15px;
    }

Changing that to ```
.center_indent {
padding:10px 0px 15px 0px;
}


Looking at the center elements in Firebug showed which ones had padding (a possible cause of the observed behavior), narrowing the search a lot. Without that, it would have been a nightmare to find.
11 Aug 2009, 4:35 PM
#4
pascal020 avatar

pascal020

New Zenner

Join Date:
Aug 2009
Posts:
43
Plugin Contributions:
0

Re: customize product listing table

thanks guys!

i defined a width.

.center_indent {
	padding:10px 15px 15px 15px;
	width: 405px;

seems to work in all the browsers.. except ie8 ofcourse :yuck: