Re: Cherry Zen Template Support Thread
Hallo! I am a potential new user of zen cart. I am currently developing my cherry zen eshop at my local computer and I would like to ask the following question:
The width of the site is fluid. Can I make the height of the site fluid as well?
What I managed to do until now is to define a fixed height for my site with the following lines at stylesheet.css: (My lines are the GT marked)
Code:
.contentWrap {
padding: 5px 0 5px 5px;
height: 700px; /*GT*/
overflow-x: hidden;/*GT*/
overflow-y: auto;/*GT*/
}
Although this is close to what I need, this code does not give a "fluid" solution.
I have also found this post which tries to give a solution but I did not manage to get any result.
http://www.zen-cart.com/forum/showthread.php?p=715983
Could you please help me in this issue?
Kind regards,
orange_juice
Re: Cherry Zen Template Support Thread
Hey there :)
Just installed 1.3.8 and your awesome template - thanks!
But there's a small problem... the website displays links below the banner! Categories. I can't figure out how to disable them and I've searched to no end. here's a link to my site: http://dfdancewear.com/shop/
How do I remove those links? They look really out of place.
Re: Cherry Zen Template Support Thread
I am in need of help I have been searching the forum for ages now and can not find what i am looking for.
I need to move the product listing info above the attributes box and the starting at info and keep the attributes box above the buy now button.
is there a way to align the buy now under the attributes box as well.
Thanks in advance for any help you can give me
:lamo:
Re: Cherry Zen Template Support Thread
One more thing i am having heaps of trounble extending the width of my side boxes i have read and reread the read me file and followed it and my right hand side box even when i reverted back to the original sizes is over hanging the template
http://gigglesmiledesigns.com.au/Store/
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
orange_juice
Hallo! I am a potential new user of zen cart. I am currently developing my cherry zen eshop at my local computer and I would like to ask the following question:
The width of the site is fluid. Can I make the height of the site fluid as well?
What I managed to do until now is to define a fixed height for my site with the following lines at stylesheet.css: (My lines are the GT marked)
Code:
.contentWrap {
padding: 5px 0 5px 5px;
height: 700px; /*GT*/
overflow-x: hidden;/*GT*/
overflow-y: auto;/*GT*/
}
Although this is close to what I need, this code does not give a "fluid" solution.
I have also found this post which tries to give a solution but I did not manage to get any result.
http://www.zen-cart.com/forum/showthread.php?p=715983
Could you please help me in this issue?
Kind regards,
orange_juice
I'm not understanding you. The site already is "fluid" in regards to height. In my understanding, fluid means that it expands and contracts depending on content. If you're saying you want it always to be the same height as the browser window, I'm not sure of a solution for that.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
wheretostartwebsites
I am in need of help I have been searching the forum for ages now and can not find what i am looking for.
I need to move the product listing info above the attributes box and the starting at info and keep the attributes box above the buy now button.
is there a way to align the buy now under the attributes box as well.
Thanks in advance for any help you can give me
:lamo:
If you open up includes/templates/cherry_zen/templates/tpl_product_info_display.php you can change around the order of stuff.
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
jrim
Hey there :)
Just installed 1.3.8 and your awesome template - thanks!
But there's a small problem... the website displays links below the banner! Categories. I can't figure out how to disable them and I've searched to no end. here's a link to my site:
http://dfdancewear.com/shop/
How do I remove those links? They look really out of place.
I can't see what you're referring to since you don't have the cherry zen template on right now. I think you might be referring to the Categories Tabs menu, which you turn of in your admin, under "Configuration", "Layout Settings"
Re: Cherry Zen Template Support Thread
Quote:
Originally Posted by
wheretostartwebsites
One more thing i am having heaps of trounble extending the width of my side boxes i have read and reread the read me file and followed it and my right hand side box even when i reverted back to the original sizes is over hanging the template
http://gigglesmiledesigns.com.au/Store/
If it isn't looking right, then you aren't doing something right. :P
The original section that I refer to in the readme, that you have to adjust to change sidebox width looks like this:
Code:
.outer {
padding-left: 165px; /* Same width as margin-left for the float-wrap div */
padding-right: 150px; /* Our right column width */
}
.inner {
width: 100%;
}
.float-wrap {
float: left;
width: 97%;
margin-left: -165px; /* Same length as .outer padding-left but with negative value */
}
#content {
float: right;
margin-right: -165px; /* Same length as .outer padding-left but with negative value */
width: 100%;
line-height:1.6;
position: relative; /* IE needs this */
}
Also add 20 px more to these values (change 150 to 170, and 170 to 190):
#navColumnTwo {
float: right;
margin-right: -150px; /* This negative margin-right value is in this example the same as the right column width. */
position: relative; /* IE needs this */
}
* html #navColumnTwo {
margin-right: -170px !important; /* Fixes IE6 Issue */
}
So, if you want your sideboxes to stay at 150px, then use the above section.
Let's say you want your sideboxes to be 170px wide. Change the values in "Configuration", "Layout Settings" *remember to change it in all 4 places*
Then, in the stylesheet section, increase EVERY SINGLE PX VALUE by 20px. so 150 becomes 170, 165 becomes 185, and 170 becomes 190.