Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / space under the title and moving a few things

space under the title and moving a few things

Locked

Views: 1,017

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
18 Feb 2009, 3:32 AM
#1
robbin21973 avatar

robbin21973

Zen Follower

Join Date:
Feb 2009
Posts:
153
Plugin Contributions:
0

space under the title and moving a few things

Forgive me if this is covered somewhere but what I need I cannot seem to find. If you look at my test page, I want the beginning of the description that starts with Size: and then Pattern...... to be even with the top of the image, not smushed up toward the title. any help on this?

Also, how can I pull the price and add to cart up above that dividing line? I don't anyone to have to scroll to find it.

I know these are minor issues but I appreciate the help. You can find my page here:
http://www.polishpotterystore.com/shopping/index.php?main_page=product_info&cPath=8&products_id=1

Thank you!

18 Feb 2009, 3:48 AM
#2
gjh42 avatar

gjh42

Black Belt

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

Re: space under the title and moving a few things

You have one of ClydeJones' product info layout mods installed, so the parts are different from standard, but you should be able to edit
/includes/templates/your_template/templates/tpl_product_info_display.php to move the

<!-- bof product Purchase Box clj 2/17/2007-->

code block up to just below the

<!--eof mainProductBox-->

For the text, in product_info.css, find

#productDescription {
margin: 0;
padding: 0 0 5px 0;
line-height:1.3em;
}

and change to```
#productDescription {
margin:1.7em 0 0 0;
padding: 0 0 5px 0;
line-height:1.3em;
}

18 Feb 2009, 6:56 PM
#3
robbin21973 avatar

robbin21973

Zen Follower

Join Date:
Feb 2009
Posts:
153
Plugin Contributions:
0

Re: space under the title and moving a few things

Thank you, the spacing worked like a charm so now it looks much cleaner. But that other fix didn't quite work for the price and add to cart. That did not move. :(

19 Feb 2009, 11:08 AM
#4
gjh42 avatar

gjh42

Black Belt

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

Re: space under the title and moving a few things

It will work if the code is rearranged correctly. Since you already have a customized file, I don't know exactly what yours looks like and can only give general guidelines. If you can't get it on your own, post the file as it is, between ```
[php] and [/php]