Page 13 of 305 FirstFirst ... 311121314152363113 ... LastLast
Results 121 to 130 of 3042
  1. #121
    Join Date
    Feb 2007
    Location
    Dallas area
    Posts
    76
    Plugin Contributions
    0

    Default Shopping Cart Total

    In the shopping cart side box, the Total price is aligned to the right... but it's ALL the way to the side of the box. I wanted to add some padding to it and I thought that if I modified the "stylesheet.css" at line 697...

    .cartBoxTotal {
    text-align:right;
    font-weight:bold;
    }

    ... to add something like "padding-right:2em;" that this would solve the problem. But it didn't seem to work. I played with several numbers and nothing moved it.

    Am I tweaking in the right spot or no?

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

    Default Re: Shopping Cart Total

    Quote Originally Posted by bradymc View Post
    In the shopping cart side box, the Total price is aligned to the right... but it's ALL the way to the side of the box. I wanted to add some padding to it and I thought that if I modified the "stylesheet.css" at line 697...

    .cartBoxTotal {
    text-align:right;
    font-weight:bold;
    }

    ... to add something like "padding-right:2em;" that this would solve the problem. But it didn't seem to work. I played with several numbers and nothing moved it.

    Am I tweaking in the right spot or no?
    It's not working because cartboxtotal's padding is defined in a second spot:

    #ezPageBoxList li, .cartBoxTotal {
    margin:0;
    padding:0.2em 0;
    }

    remove cartBoxTotal from there, and it'll work where you want it to.

  3. #123
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    You're not thinking about the problem enough.
    lol someone had to say it eventually.

    Thanks

    To be honest I thought I had matched all the widths.. evidently I hadn't given it enough attention ;p
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

  4. #124
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Also, what happens in ie7? in ie6 the menu bunches to the left! Which isn't really too bad... but being a perfectionist also, It'd be nice to have a consistant experience :)
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

  5. #125
    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 ghostcorps View Post
    Also, what happens in ie7? in ie6 the menu bunches to the left! Which isn't really too bad... but being a perfectionist also, It'd be nice to have a consistant experience :)
    I think with the way you want to do this, you will run into that issue, which is why I did it the way I did.

    If you do these two tags like below, I think you won't run into the IE issues:

    div#dropMenu li a {display: block; padding: .6em 3em .6em 3em;text-decoration: none; text-transform:uppercase; color:#ffffff; text-align:center; }
    div#dropMenu>ul a {width: auto;}

    Of course, then the drop down's aren't the same size as the menu item above them...and all of the drop downs aren't exactly the same size... but on the other hand, things look more evenly spaced this way (there's the same amount of space BETWEEN each item).

    Can I just suggest, that I think it would look more refined without the fine grey box around your logo header.... but that's just my opinion.

  6. #126
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    I think with the way you want to do this, you will run into that issue, which is why I did it the way I did.
    I'm starting to see things your way :)

    Code:
    div#dropMenu li a {display: block; padding: .6em 3em .6em 3em;text-decoration: none; text-transform:uppercase; color:#ffffff; text-align:center; } 
    div#dropMenu>ul a {width: auto;}
    This makes the menu in ie space evenly, but no matter how small i make the widths, it always throws off the shopping cart to the next line in FF. Personally, I would rather it work to spec in FF and bunch on ie. But I have left it for now for you to look at.


    Can I just suggest, that I think it would look more refined without the fine grey box around your logo header.... but that's just my opinion.
    Yeh, the border was bugging me too, I just wanted to bring the logo out of the background a bit. Can I, perhaps take the shadow all the way round?
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

  7. #127
    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 ghostcorps View Post
    This makes the menu in ie space evenly, but no matter how small i make the widths, it always throws off the shopping cart to the next line in FF. Personally, I would rather it work to spec in FF and bunch on ie. But I have left it for now for you to look at.

    Yeh, the border was bugging me too, I just wanted to bring the logo out of the background a bit. Can I, perhaps take the shadow all the way round?
    Really? Cause it's not wrapping to the next line for me in FF. What version of FF are you using?

    I think you could probably make the shadows be on the left and right all the way up to the logo, but can you even see it with your background?

  8. #128
    Join Date
    Dec 2006
    Location
    Summer:Ontaio, Winter:Texas
    Posts
    211
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    I am trying to put my EZ-Pages into the drop down navigation, so far without a success. I am assuming this must be done manually, correct? I am trying to use the current "Contact Us" and tried the following:

    <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=1&chapter=10) ?>'">Our Company</a>
    <ul class="level2">
    <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
    </ul>
    </li>
    Since it does not work, could I be given directions please??

  9. #129
    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 Sunabac View Post
    I am trying to put my EZ-Pages into the drop down navigation, so far without a success. I am assuming this must be done manually, correct? I am trying to use the current "Contact Us" and tried the following:

    <li class="submenu"><a href="<?php echo zen_href_link(FILENAME_EZPAGES, 'id=1&chapter=10) ?>'">Our Company</a>
    <ul class="level2">
    <li><a href="<?php echo zen_href_link(FILENAME_CONTACT_US, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CONTACT_US; ?></a></li>
    </ul>
    </li>
    Since it does not work, could I be given directions please??
    The only issue is that your single quote is in the wrong place. It should be directly after: 'id=1&chapter=10

  10. #130
    Join Date
    Aug 2004
    Posts
    443
    Plugin Contributions
    0

    Default Re: Apple Zen Template Support Thread

    Quote Originally Posted by jettrue View Post
    Really? Cause it's not wrapping to the next line for me in FF. What version of FF are you using?
    I am using FF2.

    Sorry, what I meant was: With your solution below, it spaces properly with ie, but not with FF. Which is how I left it for you to look at. But, I am going to put it back the way it was (working in FF and bunching in ie), it doesn't look too tragic and I have more pressing matters. Besides, I dont use ie unless I'm testing how ie handles the page lol

    Quote Originally Posted by jettrue View Post
    I think you could probably make the shadows be on the left and right all the way up to the logo, but can you even see it with your background?
    Its very subtle, except where it just stops before the drop down menu, which makes it look unfinished. I guess I could make the menu bar stretch out like you had it originally, but If I can; I'd like to to leave that as a final option. Thing is, whenever I try to add any kind of border to the dropmenuwrapper it shifts a px or 2 to the right

    Here's an interesting twist though. Sometimes the shadow shows, sometimes it doesn't. That has been the case since I added the template (even before fiddling with it), but doesn't really faze me. However, if the shadow shows it makes the logo.gif resize by a px or 2 and gives it jagged lines. If the shadow does not show, the the logo.gif is fine. However the main banner is never touched. I think there are gremlins in the tubes.
    Last edited by ghostcorps; 15 Feb 2007 at 11:40 PM.
    Sometimes the best advice is to tell me I'm not thinking about the problem enough.
    FleshMetal.com.au

 

 

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