Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / How to tidy this up (re-arrange things)?

How to tidy this up (re-arrange things)?

Locked

Views: 717

Results 1 to 5 of 5
This thread is locked. New replies are disabled.
6 Apr 2010, 3:59 PM
#1
pb4 avatar

pb4

Totally Zenned

Join Date:
Nov 2007
Posts:
555
Plugin Contributions:
0

How to tidy this up (re-arrange things)?

Hi,

I need help with arranging the quantity box and check box on this page (and all others with these choices) -

http://www.ampmgraphics.com/demo/index.php?main_page=product_info&cPath=86&products_id=186

It just doesnt look right.

I am trying to get the quality drop down menu to below 'Please choose' (justified to the left)

Then undernieth that the check box for design. I've tried out things in the css but havn't got anywhere near :blush:

Is there something I need to change in the admin?? If not how do I do this?

Thanks

6 Apr 2010, 4:59 PM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: How to tidy this up (re-arrange things)?

.wrapperAttribsOptions {
	margin: 0.3em 0em;
	float:left;
	}
.wrapperAttribsOptions+.clearBoth {clear: left;}
.clearBoth+.wrapperAttribsOptions+.clearBoth {clear: both;}
```The clear: left; lets the second attribute rise up past the (right-floated) add box. The last rule can be omitted if you are ok with the review etc. buttons rising as well.
7 Apr 2010, 1:55 PM
#3
pb4 avatar

pb4

Totally Zenned

Join Date:
Nov 2007
Posts:
555
Plugin Contributions:
0

Re: How to tidy this up (re-arrange things)?

yay thats brill :clap: Thank you.

How would I swap them round so the quantity is before the design checkbox?

7 Apr 2010, 3:57 PM
#4
gjh42 avatar

gjh42

Black Belt

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

Re: How to tidy this up (re-arrange things)?

Change their sort order in Catalog > Option Names Manager.

7 Apr 2010, 4:07 PM
#5
pb4 avatar

pb4

Totally Zenned

Join Date:
Nov 2007
Posts:
555
Plugin Contributions:
0

Re: How to tidy this up (re-arrange things)?

great :D Thank you!