Page 32 of 305 FirstFirst ... 2230313233344282132 ... LastLast
Results 311 to 320 of 3042
  1. #311
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Originally Posted by jettrue
    I see the changes now, thanks...

    I don't really think this will help, but to make your site match my site, can you go into your admin, then go to "configuration", then "layout settings" and change "define breadcrumb status" to "2" (you are using 1.3.7, right?)

    As for css hover, the permissions on that file should be 644... that may be the issue.


    Hi Jade

    I updated my site to "Zencart v1.3.7" and installed your new "v1.6 apple zen template".

    I now no longer have the csshover issue, however in IE I am still seeing a white space to the sides of my template. It appears when I remove the categories-tabs from ADMIN>LAYOUT SETTINGS.

    I tried making the previous changes to tpl_mainpage and stylesheet but still no Joy!

    Can you help?

    Kind Regards,

    Toby

    www.giftsofwonder.co.uk

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by tobicky View Post
    Originally Posted by jettrue
    I see the changes now, thanks...

    I don't really think this will help, but to make your site match my site, can you go into your admin, then go to "configuration", then "layout settings" and change "define breadcrumb status" to "2" (you are using 1.3.7, right?)

    As for css hover, the permissions on that file should be 644... that may be the issue.


    Hi Jade

    I updated my site to "Zencart v1.3.7" and installed your new "v1.6 apple zen template".

    I now no longer have the csshover issue, however in IE I am still seeing a white space to the sides of my template. It appears when I remove the categories-tabs from ADMIN>LAYOUT SETTINGS.

    I tried making the previous changes to tpl_mainpage and stylesheet but still no Joy!

    Can you help?

    Kind Regards,

    Toby

    www.giftsofwonder.co.uk

    Try removing this from tpl_main_page.php to see what happens:

    <div id="centerColumnOuter"></div>

  3. #313
    Join Date
    Mar 2007
    Posts
    3
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Hi Jade,

    I've just uploaded your template to my server, but I've had a couple of errors appear on the page - the site is: http://www.chloebeck.co.uk

    Any idea what I've done wrong?

    Thanks,
    Steve

  4. #314
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by tobicky View Post
    Hi Jade

    I updated my site to "Zencart v1.3.7" and installed your new "v1.6 apple zen template".

    I now no longer have the csshover issue, however in IE I am still seeing a white space to the sides of my template. It appears when I remove the categories-tabs from ADMIN>LAYOUT SETTINGS.

    I tried making the previous changes to tpl_mainpage and stylesheet but still no Joy!

    Can you help?

    Kind Regards,

    Toby
    Quote Originally Posted by jettrue View Post
    Try removing this from tpl_main_page.php to see what happens:

    <div id="centerColumnOuter"></div>
    Tried removing this, and it removes the blue image beneath the drop down menu....

  5. #315
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by tobicky View Post
    Hi Jade

    I updated my site to "Zencart v1.3.7" and installed your new "v1.6 apple zen template".

    I now no longer have the csshover issue, however in IE I am still seeing a white space to the sides of my template. It appears when I remove the categories-tabs from ADMIN>LAYOUT SETTINGS.

    I tried making the previous changes to tpl_mainpage and stylesheet but still no Joy!

    Can you help?

    Kind Regards,

    Toby
    Quote Originally Posted by tobicky View Post
    Hi Jade

    I updated my site to "Zencart v1.3.7" and installed your new "v1.6 apple zen template".

    I now no longer have the csshover issue, however in IE I am still seeing a white space to the sides of my template. It appears when I remove the categories-tabs from ADMIN>LAYOUT SETTINGS.

    I tried making the previous changes to tpl_mainpage and stylesheet but still no Joy!

    Can you help?

    Kind Regards,

    Toby
    Quote Originally Posted by jettrue View Post
    Try removing this from tpl_main_page.php to see what happens:

    <div id="centerColumnOuter"></div>
    Tried removing this, and tried changing:
    #centerColumnOuter {
    margin:-.1em .5em 0 .5em;
    width:70em;
    height:1.15em;
    position:relative;
    }

    TO:

    #centerColumnOuter {
    margin:-.1em .5em 0 .5em;
    width:70em;
    position:relative;
    clear:both;
    }
    however, it removes the blue image (headerborder.gif) beneath the drop down menu....
    I've left the changes for you to see
    Many Thanks
    Toby

  6. #316
    Join Date
    Dec 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by fizfaz View Post
    Hi Jade,
    I've gave FIELDSET tag in CSS stylesheet 85% width.., now facing similar problem missing the border in IE... (border new product for Month and monthly special for Month )
    Using IE 6.0.. Pls advice.. Thanks..
    Quote Originally Posted by jettrue View Post
    Link please?
    The link can check here. Problem happened in IE on the index page.
    Thanks...

  7. #317
    Join Date
    Dec 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    I've found a better way to address this issue, and this is how I will fix it in the next release of this template.

    in includes/templates/YOUR_TEMPLATE/css/stylesheet.css change:

    Code:
    input[type=checkbox], input[type=radio] {
        float:left;
        }
    to

    Code:
    html>body input[type=checkbox], html>body input[type=radio] {
        float:left;
        }
    and change:

    Code:
    .checkboxLabel, .radioButtonLabel {
        margin:.3em;
        float:left;
        }
    to:

    Code:
    html>body .checkboxLabel, html>body .radioButtonLabel {
        margin:.3em;
        float:left;
        }
    It's an IE hack, but this will allow you to keep the normal width for the create account section, vs. swedging it down for IE (which makes it too narrow in Firefox and others)
    I found the 2nd code as below with LABEL before the dot.

    Code:
    LABEL.checkboxLabel, LABEL.radioButtonLabel {
        margin:.3em;
        float:left;
        }
    so pls advice.. Thanks

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by fizfaz View Post
    I found the 2nd code as below with LABEL before the dot.

    Code:
    LABEL.checkboxLabel, LABEL.radioButtonLabel {
        margin:.3em;
        float:left;
        }
    so pls advice.. Thanks
    Just replace the above code with the code I posted.

  9. #319
    Join Date
    Dec 2006
    Posts
    14
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by Alik View Post
    Great template!!!!! and i'm almost done editing... forund a problem and can't figure out how to fix:

    link

    The site looks great in FF but the content slides down in IE6

    please help
    Hi Jade,
    I just realized a few more content slides down in IE; create_account page, account_newsletter, account_notification,
    Hopefully you will come out with better solution to resolve this IE issue..
    Thanks..

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

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by fizfaz View Post
    Hi Jade,
    I just realized a few more content slides down in IE; create_account page, account_newsletter, account_notification,
    Hopefully you will come out with better solution to resolve this IE issue..
    Thanks..
    The changes I posted here:
    http://www.zen-cart.com/forum/showpo...&postcount=315

    Should fix this problem. I don't see this new code on your site.


    Replace this:

    LABEL.checkboxLabel, LABEL.radioButtonLabel {
    margin:.3em;
    float:left;
    }

    with this:

    html>body .checkboxLabel, html>body .radioButtonLabel {
    margin:.3em;
    float:left;
    }



    and this:

    input[type=checkbox], input[type=radio] {
    float:left;
    }

    with this:

    html>body input[type=checkbox], html>body input[type=radio] {
    float:left;
    }

 

 

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