Page 238 of 305 FirstFirst ... 138188228236237238239240248288 ... LastLast
Results 2,371 to 2,380 of 3042
  1. #2371
    Join Date
    Dec 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi there,
    I've searched in every corner of the forums, and I'm sure the answer is here somewhere but I can't find it!

    I'm having a problem with my sideboxes. When I activate them they appear at the bottom of my screen under the main text on the right hand side. This happens with any sidebox I activate under Tools>Layout Boxes Controller.

    I've checked the column widths in Configeration>Layout Settings and they are all at 150px.

    Can anyone please help!!!!

    Many thanks!

    Tiff - bumboo.com.au

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

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by bumboo View Post
    Hi there,
    I've searched in every corner of the forums, and I'm sure the answer is here somewhere but I can't find it!

    I'm having a problem with my sideboxes. When I activate them they appear at the bottom of my screen under the main text on the right hand side. This happens with any sidebox I activate under Tools>Layout Boxes Controller.

    I've checked the column widths in Configeration>Layout Settings and they are all at 150px.

    Can anyone please help!!!!

    Many thanks!

    Tiff - bumboo.com.au
    Its because you did this:
    .centerColumn {
    width:95%!important;
    float:left;
    margin:0 2% 2% 3%;
    text-align:left;
    line-height:1.6em;
    display:inline; /* fixes IE Bug in IE6 and earlier - do not remove */
    }

    That width is supposed to be 75%.

    I assume you changed it because you wanted to have the image go all the way across the home page.

    IF you change it back to 75%, then the sideboxes will work as desired.

    If you want the sideboxes to never show on the home page. I think adding this to your css will do it:

    #indexHomeBody .centerColumn {
    float:left!important;
    width:95%!important;
    }

    #indexHomeBody .navColumnTwo, #indexHomeBody .navColumnOne {display:none;}

  3. #2373
    Join Date
    Dec 2008
    Posts
    7
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi Jade,
    Thank you so much for your excellent help! It fixed my problem perfectly. I think you're incredibly generous with the assistance you give everyone.
    Sincere thanks!

  4. #2374
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Hi there,

    Great template...but now I am struggling. I have made a lot of changes to the template most of which I am happy about.

    My site is: www.electronicgiftshop.co.uk

    I have added display: none to the css because I couldn't figure out how to get rid of the home log in and search bar in the main header (think that is what it is called)

    However, all I really wanted was to display a logo above the drop down menu.


    Now I am stuck..so any help would be really appreciated

    thanks

    Lee

  5. #2375
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by sykes48 View Post
    Hi there,

    Great template...but now I am struggling. I have made a lot of changes to the template most of which I am happy about.

    My site is: www.electronicgiftshop.co.uk

    I have added display: none to the css because I couldn't figure out how to get rid of the home log in and search bar in the main header (think that is what it is called)

    However, all I really wanted was to display a logo above the drop down menu.


    Now I am stuck..so any help would be really appreciated

    thanks

    Lee
    Well a lot more hours later I am just about there except I can't seem to get a logo to show...stumped..any help?

    Cheers

    Lee

  6. #2376
    Join Date
    Nov 2008
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by sykes48 View Post
    Well a lot more hours later I am just about there except I can't seem to get a logo to show...stumped..any help?

    Cheers

    Lee
    I have managed to sort my logo out. My last issue is the layout changes depending on which browser you use, I have tried the latest IE& and Mozilla Firefox.

    Any help would be greatly appreciated.

    Lee

    www,electronicgiftshop.co.uk

  7. #2377
    Join Date
    Oct 2008
    Posts
    2
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    I agree, great templete. This is what I did with it:
    http://mrcleanmobileautodetail.com/autodetail[/url]
    I will gladly share css.

    Stuart
    Stuart@######################################.com

    ######################################.com

  8. #2378
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Quote Originally Posted by jettrue View Post
    If you want the sideboxes to never show on the home page. I think adding this to your css will do it:

    #indexHomeBody .centerColumn {
    float:left!important;
    width:95%!important;
    }

    #indexHomeBody .navColumnTwo, #indexHomeBody .navColumnOne {display:none;}
    I would like to remove the sidebox from the main page only. Using the bit of css above, found in a previous thread, I attempted to achieve this but the sidebox was only pushed down, not removed. Here is a screen shot.

    I have also tried the following, on tpl_main_page.php, as per a Zen tutorial:
    if ($this_is_home_page) {
    $flag_disable_left = true;
    }
    But also had no success.

    FYI: I followed Apple Zen tip #5 and moved the sidebox to the left, although not recently. However, that may be playing into this, as well.

    Thanks for what ever help you can offer.

  9. #2379
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    Usig this if statment:
    if ($this_is_home_page) {
    $flag_disable_left = true;
    $flag_disable_right = true;
    }
    I was able to remove the sidebox. However, the dead space associated with it is still there, as you can see.

    How can I make the entire space available to me??

  10. #2380
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Apple Zen Support Thread

    OK, it looks like I have this worked out: Combining the two made the difference. I added this if statement to tpl_main_page.php:
    if ($this_is_home_page) {
    $flag_disable_left = true;
    $flag_disable_right = true;
    }
    and I added this bit of css to the stylesheet.css:
    #indexHomeBody .centerColumn {
    width: 95%!important;
    float: right!important;
    }

    #indexHomeBody #centerColumnWrapper2 {
    background:#ead5ea!important;
    }

    #indexHomeBody .navColumnTwo, #indexHomeBody .navColumnOne {display:none;}

 

 

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3725
    Last Post: 20 Feb 2025, 05:46 PM
  2. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  3. v151 Zen Magnific Support Thread
    By mutinyzoo in forum All Other Contributions/Addons
    Replies: 79
    Last Post: 14 Sep 2015, 04:39 AM
  4. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM

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