Results 1 to 10 of 3244

Hybrid View

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    What I was trying to say with my previous post:

    165 + 40 = 205

    your 190px's should be 205px because the original value there was 165px, NOT 150px.

    Edited To Add:
    * html #navColumnTwo {
    margin-right: -190px !important; /* Fixes IE6 Issue */
    }
    and put the above back to -170px.
    BINGO I knew that you would spot the error in a second.

    THANKS
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  2. #2
    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 Stuff4Toys View Post
    BINGO I knew that you would spot the error in a second.

    THANKS
    JOhn ><>
    Didn't seem to help www.nativitydisplays.com

    HTML Code:
    .outer {
     padding-left: 165px; /* Same width as margin-left for the float-wrap div */
     padding-right: 165px; /* 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  */
    }
    .contentWrap {
     padding: 5px 0 5px 5px;
    }
    #navColumnOne {
     float: left;
     position: relative; /* IE needs this  */
    }
    #navColumnTwo {
     float: right;
     margin-right: -165px; /* 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 */
    I thought I had a good understanding of this. Hmmmmm
    Newest Site: ChargerPros - Stuff4Toys

  3. #3
    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 Stuff4Toys View Post
    Didn't seem to help www.nativitydisplays.com

    HTML Code:
    .outer {
     padding-left: 165px; /* Same width as margin-left for the float-wrap div */
     padding-right: 165px; /* 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  */
    }
    .contentWrap {
     padding: 5px 0 5px 5px;
    }
    #navColumnOne {
     float: left;
     position: relative; /* IE needs this  */
    }
    #navColumnTwo {
     float: right;
     margin-right: -165px; /* 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 */
    I thought I had a good understanding of this. Hmmmmm
    Man, you're hurtin' me.

    The original value for the left boxes in the css is 165px. The original value for the right boxes in the css is 150px. Since you changed them BOTH 15px more, you need to increase BOTH by 15 px more.

    165 + 15 =180

    150 + 15 =165 (you have this correct for the right sideboxes.

    Please look at this section from the ORIGINAL file, and increase EACH value accordingly!

  4. #4
    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 jettrue View Post
    Man, you're hurtin' me.

    The original value for the left boxes in the css is 165px. The original value for the right boxes in the css is 150px. Since you changed them BOTH 15px more, you need to increase BOTH by 15 px more.

    165 + 15 =180

    150 + 15 =165 (you have this correct for the right sideboxes.

    Please look at this section from the ORIGINAL file, and increase EACH value accordingly!
    That's Pthththth
    LOL

    I only changed the right column to be equal to the left (I thought)

    I've been at this for 20+ years and still have brain freeze from time to time.

    Left columns are still at 165 (right?)
    I increased the right column from 150 to 165 = 15

    This hurts both of us. Where do I have to add the 15?

    This is what I see in the original css:
    HTML 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  */
    }
    .contentWrap {
     padding: 5px 0 5px 5px;
    }
    #navColumnOne {
     float: left;
     position: relative; /* IE needs this  */
    }
    #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 */
    }
    /* end wrappers - page or section containers*/
    So the only change I made was
    HTML Code:
    padding-right: 150px; /* Our right column width */
    to 165 and
    HTML Code:
    #navColumnTwo {
     float: right;
     margin-right: -150px;
    to 165

    Which other setting needs the added 15? I know this is simple for you, being the stylesheet expert and all, but give a guy a break, please. {BSG}
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  5. #5
    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 Stuff4Toys View Post
    That's Pthththth
    LOL

    I only changed the right column to be equal to the left (I thought)

    I've been at this for 20+ years and still have brain freeze from time to time.

    Left columns are still at 165 (right?)
    I increased the right column from 150 to 165 = 15

    This hurts both of us. Where do I have to add the 15?

    This is what I see in the original css:
    HTML 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  */
    }
    .contentWrap {
     padding: 5px 0 5px 5px;
    }
    #navColumnOne {
     float: left;
     position: relative; /* IE needs this  */
    }
    #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 */
    }
    /* end wrappers - page or section containers*/
    So the only change I made was
    HTML Code:
    padding-right: 150px; /* Our right column width */
    to 165 and
    HTML Code:
    #navColumnTwo {
     float: right;
     margin-right: -150px;
    to 165

    Which other setting needs the added 15? I know this is simple for you, being the stylesheet expert and all, but give a guy a break, please. {BSG}
    JOhn ><>

    Add 15px EVERYWHERE. See how it starts at 165px ALREADY for the left side? That is because there is built in padding. Just like before, I told you to add 40px to 165px, now you add 15px to 165px.

    To be absolutely clear. Wherever you see 165px in the original stylesheet, change it to 180px, wherever you see 150px, change it to 165px. Wherever you see 170px, change it to 185px.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Add 15px EVERYWHERE. See how it starts at 165px ALREADY for the left side? That is because there is built in padding. Just like before, I told you to add 40px to 165px, now you add 15px to 165px.

    To be absolutely clear. Wherever you see 165px in the original stylesheet, change it to 180px, wherever you see 150px, change it to 165px. Wherever you see 170px, change it to 185px.
    OK now the mud is clearing from my brain.

    I really appreciate your patience, it teaches me a lesson when I deal with others. Thanks Again
    JOhn ><>
    Newest Site: ChargerPros - Stuff4Toys

  7. #7
    Join Date
    Jan 2006
    Posts
    120
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Just wanted to post this as a reference for future surfers:

    My MessageStack background colors were not rendering at all in IE6 for this template. They worked fine in IE7 and firefox. To fix this I added a width: 640px; to the CSS for these items and now they work fine.

 

 

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