Page 25 of 305 FirstFirst ... 1523242526273575125 ... LastLast
Results 241 to 250 of 3042
  1. #241
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Hi Tim,

    Concerning your logo, you've got some messed up css there... change your logo section to this:
    #logo {
    width:750px;
    margin:0 auto;
    text-align:center;
    }

    Beautiful - Jade, I can't thank you enough.

    Tim

  2. #242
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Did you use the about us mod...
    Nope, but I have now ;)

    Thanks
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

  3. #243
    Join Date
    Jan 2007
    Posts
    31
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Hi duxfield,

    in tpl_main_page.php, remove the </div> in this section:

    Code:
    <?php require(DIR_WS_MODULES . zen_get_module_directory('column_left.php')); ?>
    <?php
    }
    ?>
    </div>
    Hi Jade - Success!!! I removed that </div> and it moved the lower border graphic back down to the bottom of the page. Thank you. To try remove the white space padding around the center image I increased the width and height of the image by 3 pixels in the html code in the define_main_page.php in Define Pages. This removed the padding between the left hand side of the image and the left hand border, but no matter how much I increased the height it wouldn't remove the padding between the breadcrumb bar and image, and between the image and the lower border graphic. Did I do the right thing?

    Also how the heck did you know that was the offending </div>? I counted all the <divs> in that file and there was an even number and I assume you need one to open the div and one to close it.

    Anyways I'm left with just a few issues now:

    - White space gap between the top of the main image and the breadcrumb bar. This happens in Firefox as well as IE.
    - Little bits of border sticking up on both sides of the top of the breadcrumb bar. This only happens in IE.
    - Fine white line showing just under the portion of the page that the Search box is displayed in (Is that called the EZ-Pages area?). This only happens in Firefox.

    I also have an error when I get to the select payment step in the shopping process but we'll get to that later I think :)

    Thank you for helping.

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

    Default Re: Apple Zen Template Support Thread

    Concerning the main text area: Could you tell me how to change the background color of this area?

    Thanks.

  5. #245
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    How and where can you change the background of the entire layout? I found where I can change the BG of just the middle/main section, but I want it to extend from the top to the bottom of the browswer. Many thanks and a great product!!!

  6. #246
    Join Date
    Mar 2007
    Posts
    9
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jdickson View Post
    How and where can you change the background of the entire layout? I found where I can change the BG of just the middle/main section, but I want it to extend from the top to the bottom of the browswer. Many thanks and a great product!!!
    Please disreguard, found solution!

  7. #247
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Hi Jade

    Re: removing white space from giftsofwonder.co.uk

    I tried to remove the white line by changing the following...

    Change:
    #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, the white space still appears to be there......can you suggest anything else?

    Kind regards

    Toby

  8. #248
    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 duxfield View Post
    To try remove the white space padding around the center image I increased the width and height of the image by 3 pixels in the html code in the define_main_page.php in Define Pages. This removed the padding between the left hand side of the image and the left hand border, but no matter how much I increased the height it wouldn't remove the padding between the breadcrumb bar and image, and between the image and the lower border graphic. Did I do the right thing?
    I don't know if that was the right thing to do, LOL, but if it worked. :-) As for the top space, the issue is this code:
    <h1 id="indexDefaultHeading"> </h1>

    You can remove that from includes/templates/YOUR_TEMPLATE/templates/tpl_index_default.php


    Quote Originally Posted by duxfield View Post
    Also how the heck did you know that was the offending </div>? I counted all the <divs> in that file and there was an even number and I assume you need one to open the div and one to close it.
    It was the only one it could be.


    Quote Originally Posted by duxfield View Post
    Anyways I'm left with just a few issues now:

    - Little bits of border sticking up on both sides of the top of the breadcrumb bar. This only happens in IE.
    I'm not too sure about this, but first lets try this. Remove:
    <div id="centerColumnOuter"></div>
    from includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php (I think that's right, if not, try tpl_header.php).

    Quote Originally Posted by duxfield View Post
    - Fine white line showing just under the portion of the page that the Search box is displayed in (Is that called the EZ-Pages area?). This only happens in Firefox.
    Add your background color to #headerWrapper.

    Quote Originally Posted by duxfield View Post
    I also have an error when I get to the select payment step in the shopping process but we'll get to that later I think :)
    What is the error? Are you using 1.3.7.

  9. #249
    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
    Hi Jade

    Re: removing white space from giftsofwonder.co.uk

    I tried to remove the white line by changing the following...

    Change:
    #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, the white space still appears to be there......can you suggest anything else?

    Kind regards

    Toby
    Every time I look at your site, in your css, I still see the old css there:
    Code:
    #centerColumnOuter {
    margin:-.1em .5em 0 .5em;
    width:70em;
    height:1.15em;
    position:relative;
    }
    I was hoping that you'd change it and leave it the corrected way, so I could further investigate.

    However, since you're not using that section anyway, and changing it doesn't seem to be working for you, go ahead and open up includes/templates/YOUR_TEMPLATE/common/tpl_main_page.php and remove this:
    <div id="centerColumnOuter"></div>

    EVEN IF that does not fix your problem, please leave it that way, and I'll further investigate.

    Thanks!

  10. #250
    Join Date
    Feb 2007
    Posts
    20
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    hmmm, this is strange...my latest version of stylesheet.css appears to be showing the amended changes with clear:both;

    I have also removed the <div id="centerColumnOuter"></div> - has this registered? It still doesn't appear to be working.

    Also, I'm not sure if this is related but it is another matter that I need some help with, when I enter the site I get the following error message

    "access is denied to includes/csshover.htc

    do you want to continue running scripts"

    I am using internet explorer

    Thanks for all your help so far

 

 

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