Page 242 of 326 FirstFirst ... 142192232240241242243244252292 ... LastLast
Results 2,411 to 2,420 of 3251
  1. #2411
    Join Date
    Jan 2009
    Posts
    2
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by markus75 View Post
    Hello,
    when i want to change the width of the boxes it doesnt work, why?
    Hi Markus,
    I'm new here as well but will try to help.
    have you followed this from the read me:

    I'm not saying you havent read it, just trying to be helpful.

    Regards,

    Anne.

    8. Go to "Configuration", "Layout Settings" and set the left and right sideboxes to "150px" wide. Notice there are two spots to do this for both the left and right sideboxes, so you have to enter "150px" 4 times. If you want a wider column width, pleas read #5 in the TIPS section below.

    5. To change the width of the sideboxes, open up the admin, and change the widths of the left and right columns under "Configuration", "Layout Settings". Note that this needs to be changed in two spots for each side.

    Lets say you increase the width of both sideboxes to 170px (20px more - the original is 150px), you'll need to open up includes/templates/cherry_zen/css/stylesheet.css and change .outer's padding-right to 170px (20 px more) and change all the instances of 165px in the section below, to 185px (20 px more):
    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 */
    }

    NOW, the grey background behind the sidebox will still be 150px wide, so you need to open up includes/templates/cherry_zen/images/sidebox.gif and change it to 170px wide, and re-upload the changed image.

  2. #2412
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Is it possible to close the gaps in the registration/signup form? There are gaps between the fields.

    Thanks
    Downunder QLD

  3. #2413
    Join Date
    Jan 2006
    Location
    Downunder - QLD - Gold Coast
    Posts
    964
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Found the problem.

    Change this in stylesheet.css
    Code:
    LABEL.inputLabel {
    	width:90%;
    	float:left;
    	margin:.3em;
    }
    with this

    Code:
    LABEL.inputLabel {
    	/*width:90%;*/
    	width: 11em;
    
    	float:left;
    	margin:.3em;
    }
    Downunder QLD

  4. #2414
    Join Date
    May 2007
    Location
    SW Florida
    Posts
    1,051
    Plugin Contributions
    2

    Have a Drink Re: Cherry Zen Template Support Thread

    Quote Originally Posted by markus75 View Post
    Hello,
    when i want to change the width of the boxes it doesnt work, why?
    In the Cherry Zen zip file there is a file named "readme_or_else.txt" This file describes in detail how to make many changes to this template including column width.

    Probably why it is named "Read Me or Else"
    Have a GREAT Day
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  5. #2415
    Join Date
    Jan 2009
    Posts
    44
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Does this happen in my test site http://www.cherryzen.jadetrue.com? If not, then reload the original stylesheet to your site, and see if it still happens. If it looks fine, then it was some change that you made causing it. Then apply your changes a little at a time.
    Tried replacing it with the original sylesheet and it still comes up wrong. On the right side the sidebox headers are correct but the sidebox graphic (background) gets cut off and the ez pages bar, logo, and menu bar all get cut off on the right side. Same thing with the original stylesheet.

    Is it something on my IE settings? Or can anyone else with IE6 see the same thing I'm seeing?

  6. #2416
    Join Date
    Jan 2009
    Posts
    44
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by rleepac View Post
    Tried replacing it with the original sylesheet and it still comes up wrong. On the right side the sidebox headers are correct but the sidebox graphic (background) gets cut off and the ez pages bar, logo, and menu bar all get cut off on the right side. Same thing with the original stylesheet.

    Is it something on my IE settings? Or can anyone else with IE6 see the same thing I'm seeing?
    I got it. On the stylesheet I had the width set to 80% instead of 100% in the line that was for IE. Now it's working fine. Thank you!

  7. #2417
    Join Date
    Aug 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by intelz View Post
    Hi Markus,
    I'm new here as well but will try to help.
    have you followed this from the read me:

    I'm not saying you havent read it, just trying to be helpful.

    Regards,

    Anne.

    8. Go to "Configuration", "Layout Settings" and set the left and right sideboxes to "150px" wide. Notice there are two spots to do this for both the left and right sideboxes, so you have to enter "150px" 4 times. If you want a wider column width, pleas read #5 in the TIPS section below.

    5. To change the width of the sideboxes, open up the admin, and change the widths of the left and right columns under "Configuration", "Layout Settings". Note that this needs to be changed in two spots for each side.

    Lets say you increase the width of both sideboxes to 170px (20px more - the original is 150px), you'll need to open up includes/templates/cherry_zen/css/stylesheet.css and change .outer's padding-right to 170px (20 px more) and change all the instances of 165px in the section below, to 185px (20 px more):
    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 */
    }

    NOW, the grey background behind the sidebox will still be 150px wide, so you need to open up includes/templates/cherry_zen/images/sidebox.gif and change it to 170px wide, and re-upload the changed image.


    Thanks. I did the changes.
    But now i have this problem:


    As you can see, that space on the right is much less than the left.
    How can i set the same size?

  8. #2418
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by markus75 View Post

    Thanks. I did the changes.
    But now i have this problem:

    As you can see, that space on the right is much less than the left.
    How can i set the same size?
    Please post a link to your site. And double and triple check that you followed the instructions EXACTLY, its easy to miss something with css.

  9. #2419
    Join Date
    Aug 2008
    Posts
    46
    Plugin Contributions
    0

    Idea or Suggestion Re: Cherry Zen Template Support Thread

    Hello, my website is http://footballmaniax.com/.

    And below is how i edited that part of the stylesheet.css
    I also edited the sidebox.gif to be 170px large.

    PHP Code:
    }
    .
    outer {
        
    padding-left185px/* Same width as margin-left for the float-wrap div */
        
    padding-right150px/* Our right column width */
    }
    .
    inner {
        
    width100%;
    }
    .
    float-wrap {
        
    floatleft;
        
    width97%;
        
    margin-left: -185px/* Same length as .outer padding-left but with negative value */
    }
    #content {
        
    floatright;
        
    margin-right: -185px/* Same length as .outer padding-left but with negative value */
        
    width100%;
        
    line-height:1.6;
        
    positionrelative/* IE needs this  */ 
    Thanks a lot in advance for your help

  10. #2420
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by markus75 View Post
    Hello, my website is http://footballmaniax.com/.

    And below is how i edited that part of the stylesheet.css
    I also edited the sidebox.gif to be 170px large.

    PHP Code:
    }
    .
    outer {
        
    padding-left185px/* Same width as margin-left for the float-wrap div */
        
    padding-right150px/* Our right column width */
    }
    .
    inner {
        
    width100%;
    }
    .
    float-wrap {
        
    floatleft;
        
    width97%;
        
    margin-left: -185px/* Same length as .outer padding-left but with negative value */
    }
    #content {
        
    floatright;
        
    margin-right: -185px/* Same length as .outer padding-left but with negative value */
        
    width100%;
        
    line-height:1.6;
        
    positionrelative/* IE needs this  */ 
    Thanks a lot in advance for your help
    Lets say you increase the width of both sideboxes to 170px (20px more - the original is 150px), you'll need to open up includes/templates/cherry_zen/css/stylesheet.css and change .outer's padding-right to 170px (20 px more) and change all the instances of 165px in the section below, to 185px (20 px more)
    That's from the readme, see the part in bold, that is what you missed.

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  2. Fresh Zen -- JellyFish Template Support Thread
    By magicbox in forum Addon Templates
    Replies: 93
    Last Post: 11 Apr 2012, 08:54 AM
  3. Free Template "Future Zen" v1.2 Support Thread
    By kuroi in forum Addon Templates
    Replies: 69
    Last Post: 16 Jul 2010, 06:00 AM
  4. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR