Page 1 of 2 12 LastLast
Results 1 to 10 of 3244

Hybrid View

  1. #1
    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.

  2. #2
    Join Date
    Aug 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Yes i forgot that value, but changing only that, things went worst:




    So, i changed also the margin-right value here below to 170 (it was 150):
    PHP Code:
    #navColumnTwo {
        
    floatright;
        
    margin-right: -170px/* This negative margin-right value is in this example the same as the right column width. */
        
    positionrelative/* IE needs this  */ 
    Now the columns look right but still the central page it's not right centered (still more space on the right):

  3. #3
    Join Date
    Jan 2009
    Posts
    61
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi all,

    I'm just setting up some info on an ezpage. I copy/pasted from my old site, and the formatting (to my surprise) stayed pretty good. The problem is that the page footer seems embedded behind my info. That is, my content hasn't 'pushed' the footer to the foot...

    Page is http://www.h a m i l t o n t a y l o r.co.uk/zen/index.php?main_page=page&id=15

    I guess its something in the html, but I'm not codey enough find the problem. If this is not a Cerry Zen issue, apologies, and I'll take it elsewhere...

    Thanks in advance,

    Sean

  4. #4
    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 srt9969 View Post
    Hi all,

    I'm just setting up some info on an ezpage. I copy/pasted from my old site, and the formatting (to my surprise) stayed pretty good. The problem is that the page footer seems embedded behind my info. That is, my content hasn't 'pushed' the footer to the foot...

    Page is http://www.h a m i l t o n t a y l o r.co.uk/zen/index.php?main_page=page&id=15

    I guess its something in the html, but I'm not codey enough find the problem. If this is not a Cerry Zen issue, apologies, and I'll take it elsewhere...

    Thanks in advance,

    Sean
    It's because of all the absolute positioning used. The site doesn't know that its supposed to "contain" that information, as the absolute positioning has taken it out of the flow of the site.

    But a quick and dirty fix is to change the very first div in front of that content from this:

    <div>

    to this:

    <div style="height:1200px;">

  5. #5
    Join Date
    Jan 2009
    Posts
    61
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    It's because of all the absolute positioning used. The site doesn't know that its supposed to "contain" that information, as the absolute positioning has taken it out of the flow of the site.

    But a quick and dirty fix is to change the very first div in front of that content from this:

    <div>

    to this:

    <div style="height:1200px;">
    Quick and dirt is fine, as the content is unchanging. Thanks for the timely help.

    Regards,

    Sean

  6. #6
    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
    Yes i forgot that value, but changing only that, things went worst:




    So, i changed also the margin-right value here below to 170 (it was 150):
    PHP Code:
    #navColumnTwo {
        
    floatright;
        
    margin-right: -170px/* This negative margin-right value is in this example the same as the right column width. */
        
    positionrelative/* IE needs this  */ 
    Now the columns look right but still the central page it's not right centered (still more space on the right):
    It's because your site is so wide. If your logo were only 1000px, then it wouldn't do that. I would actually suggest that you do that, your site is a little too wide, in my opinion, and even on my widescren, high resolution monitor, I have to increase my browser width, because I don't keep my browser super wide.

    Anyway, if you want to keep your logo at 1250, you can change the 97% of .float-wrap to 98%.

    Also, you can remove the padding-left:15px of #logo to remove the white space to the left of your logo.

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

    Default Re: Cherry Zen Template Support Thread

    Now i edited the logo to be 1000px wide.
    But the site doesnt change its width.
    And how i center logo? The file readme says: "remove float:left; from the #logo tag in the css", i did so but it doesnt work.

  8. #8
    Join Date
    Aug 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Also i did not understand if i did right to edit the value in this part:
    PHP Code:
    #navColumnTwo {
        
    floatright;
        
    margin-right: -170px/* This negative margin-right value is in this example the same as the right column width. */
        
    positionrelative/* IE needs this  */ 

  9. #9
    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
    Also i did not understand if i did right to edit the value in this part:
    PHP Code:
    #navColumnTwo {
        
    floatright;
        
    margin-right: -170px/* This negative margin-right value is in this example the same as the right column width. */
        
    positionrelative/* IE needs this  */ 
    Yes, I'm sorry, I've added this to my instructions for the next update.

    Here's the original:
    Code:
    #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 change the 150px to 170px, and the 170px to 190px.

  10. #10
    Join Date
    Aug 2008
    Posts
    46
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    I uploaded here the stylesheet.css that is on use in the site at the moment: http://footballmaniax.com/stylesheet.css.txt
    If you want to take a look at it. Thanks.

 

 
Page 1 of 2 12 LastLast

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

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