Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / Subcategory images only show 1 per line?

Subcategory images only show 1 per line?

Locked

Views: 1,224

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
4 Jul 2007, 4:33 PM
#1
digitalhalo avatar

digitalhalo

New Zenner

Join Date:
Jun 2007
Posts:
7
Plugin Contributions:
0

Subcategory images only show 1 per line?

http://www.massageit.co.uk/index.php?main_page=index&cPath=65

Why is it only letting me have 1 subcategory image per line? It was the same case when it was text-only.

I have set "subcategoryies per row" to 3 in the control panel, so that shouldn't be the problem...

Any help appreciated, thanks.

7 Jul 2007, 8:02 PM
#2
digitalhalo avatar

digitalhalo

New Zenner

Join Date:
Jun 2007
Posts:
7
Plugin Contributions:
0

Re: Subcategory images only show 1 per line?

Bumping thread, urgent help needed...

7 Jul 2007, 8:42 PM
#3
kobra avatar

kobra

Black Belt

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

Re: Subcategory images only show 1 per line?

As you have used the classic template over creating your own you can not switch to this as a default to see if it is something you have altered

8 Jul 2007, 12:29 AM
#4
jettrue avatar

jettrue

Totally Zenned

Join Date:
Jan 2005
Location:
USA, St. Louis
Posts:
3,651
Plugin Contributions:
5

Re: Subcategory images only show 1 per line?

digitalhalo:

http://www.massageit.co.uk/index.php?main_page=index&cPath=65

Why is it only letting me have 1 subcategory image per line? It was the same case when it was text-only.

I have set "subcategoryies per row" to 3 in the control panel, so that shouldn't be the problem...

Any help appreciated, thanks.

Its because you currently have this:

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
	float: middle;
	}

instead of the original:

#logo, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .centerBoxContentsAlsoPurch, .attribImg {
	float: left;
	}

First of all, there's no such thing as float:middle, and second of all, when you see a list of css tags with commas, you should never change all of them, instead remove the one you want the change reflected in, and move it to a separate line.

8 Jul 2007, 8:19 AM
#5
digitalhalo avatar

digitalhalo

New Zenner

Join Date:
Jun 2007
Posts:
7
Plugin Contributions:
0

Re: Subcategory images only show 1 per line?

Thanks for the input, very helpful, thanks.