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

Hybrid View

  1. #1
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Jade, I did what you suggested...unfortunately it didn't fix the problem. It's funny that if I delete the stylesheet, the pop up window shows up correctly but the format (header etc.) all mess up.

    Any other clues?
    thanks,
    gb2007

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by gb2007 View Post
    Jade, I did what you suggested...unfortunately it didn't fix the problem. It's funny that if I delete the stylesheet, the pop up window shows up correctly but the format (header etc.) all mess up.

    Any other clues?
    thanks,
    gb2007
    Aha! I see, that was poor designing on my part. I added a width to the body tag, as well as a top padding.

    So, change the body tag to this (remove the padding and width):

    body {
    margin: 0 auto;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 78.5%;
    color: #333;
    background:#999;
    }

    and add

    margin-top:25px;


    to the #mainWrapper tag.

  3. #3
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    thanks, Jade! I fixed the problem as you said!

    another question though, how can I have two pictures side by side for one product? Let's see I have one picture for the back of the dress and one for the front of the dress. I saw this can be achieved in some other website but I have no idea how can I do it myself.

    can you shed some lights here?

    thanks!
    gb2007

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by gb2007 View Post
    thanks, Jade! I fixed the problem as you said!

    another question though, how can I have two pictures side by side for one product? Let's see I have one picture for the back of the dress and one for the front of the dress. I saw this can be achieved in some other website but I have no idea how can I do it myself.

    can you shed some lights here?

    thanks!
    gb2007
    Do you know how to get additional images for a product?
    https://www.zen-cart.com/tutorials/index.php?article=58

    Now, to get the main image and the additional image side by side, you'll have to open up includes/templates/YOUR_TEMPLATE/tpl_product_info_display.php and move the additional images section:

    Code:
      <!--bof Additional Product Images -->
      <?php
    /**
     * display the products additional images
     */
      require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
      <!--eof Additional Product Images -->
    Right after:

    <!--eof Main Product Image-->

    Then we'll have to look at the page source and css and adjust so that the images show up side by side.

    Another easier way, would be to use an image editing program like photoshop to combine the front and back image into one image.

  5. #5
    Join Date
    Dec 2006
    Posts
    18
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Guys and gals I'm unsure of what I screwed up tonight when doing some updates. I believe the error is inside the tpl_header.php file
    I'm simply image mapping it out.
    It works in safari and sunrise browser but not in IE or firefox, what went astray?

    http://www.thatsbeadiful.com/store/

    Check it out, view source it use tools email me whatever. It's probably something simple I'm not seeing work.

  6. #6
    Join Date
    Feb 2007
    Posts
    16
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Jade,

    I have one page on my website doesn't show correctly in firefox but it has no problem with IE 6. Do you know if I need change anything in the CSS file?

    http://www.gloriabridals.com/index.p...id=5&chapter=0

    thanks!
    gb2007

  7. #7
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by gb2007 View Post
    JI have one page on my website doesn't show correctly in firefox but it has no problem with IE 6. Do you know if I need change anything in the CSS file?

    http://www.gloriabridals.com/index.p...id=5&chapter=0
    You page displays in exactly the same way in FF and IE7. It's not how you want it to display, but it is correct. I haven't looked at IE6, but that tended to often ignore what it was told to do in favor of what it wanted to do, which is probably what's happened here.

    The problem that you have is simply that you are trying to cram far more information across the page than you have allowed for in your fixed width setting, so the excess overflows.

    You have two possible solutions. Reduce or re-arrange the content, or make the layout wider to accommmodate it.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by gb2007 View Post
    Jade,

    I have one page on my website doesn't show correctly in firefox but it has no problem with IE 6. Do you know if I need change anything in the CSS file?

    http://www.gloriabridals.com/index.p...id=5&chapter=0

    thanks!
    gb2007
    I would split that table in half... I wouldn't say it has no problems in IE6, IE6 just happens to expand the width of the site while the other two do not, and then it looks odd because the header doesn't go all the way across the page.

  9. #9
    Join Date
    Apr 2006
    Posts
    4
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Hi...
    Thanks so much I love this template. I would like to change the background colors
    behind all the top Side Box Headings...on my left column. No plans to use right column.

    But when I change the h3 heading it changes all...including the center column. I've tested and tried everything I can think of, I've searched but I still havent found a solution.

    I had better categories installed tried there, removed better categories still had no luck. I have since put better categories back.

    Can you suggest a method where I can have different background colors for the h3 heading. one color for sidebox h3 headings another for center column h3 headings?
    http://africanthreads.com/shop/

    Is there another way I can get the effect I want?

    I thank you in advance for any suggestions you can offer...

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

    Default Re: Simple Zen Template - available in download section

    Quote Originally Posted by kentestyle View Post
    Can you suggest a method where I can have different background colors for the h3 heading. one color for sidebox h3 headings another for center column h3 headings?
    http://africanthreads.com/shop/

    Is there another way I can get the effect I want?
    Certainly, use .leftBoxHeading instead of h3.

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Cherry Zen Template Support Thread
    By jettrue in forum Addon Templates
    Replies: 3250
    Last Post: 13 Nov 2017, 08:02 PM
  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. Re: Simple SEO URL [support thread]
    By creamcrackers in forum General Questions
    Replies: 2
    Last Post: 16 Aug 2009, 03:02 PM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 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