Page 5 of 47 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 462
  1. #41
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template, now in download section...

    another one for you. how can i put a just a black line around an info box in this and have another one incase the title for the info box . hope that makes sence

    Thanks

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

    Default Re: Simple Zen Template, now in download section...

    Quote Originally Posted by shopyoungway
    another one for you. how can i put a just a black line around an info box in this and have another one incase the title for the info box . hope that makes sence

    Thanks
    I'm not sure exactly where you wanting these lines, but all this is done in the css.

    The css for a black border would be something like this:

    #whereveryouwanttheborder {
    border: 1px solid #000;
    }

    All you have to do is figure out what the tag for the portion you want the border on. If you're talking about the sideboxes, you can try putting it under #navColumnOneWrapper (left side) and navColumnTwoWrapper(right side). Or under .leftBoxContainer for both left and right at once.

    HTH!

  3. #43
    Join Date
    Nov 2003
    Posts
    1,155
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Will Simple Zen work with the latest release, 1.3.5 ?

  4. #44
    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 DogTags
    Will Simple Zen work with the latest release, 1.3.5 ?
    Yes you can see it running on 1.3.5 here
    Kuroi Web Design and Development | Twitter

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

  5. #45
    Join Date
    Nov 2003
    Posts
    1,155
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    Thanks so much :-)

  6. #46
    Join Date
    May 2006
    Location
    Texas
    Posts
    565
    Plugin Contributions
    4

    Default Re: Simple Zen Template - available in download section

    kuroi,

    thank you for that template demo service. i wanted to see the difference between the 1.3.0.2 classic and the 1.3.5 classic without having to do a test install. appreciate it!

    Samad

  7. #47
    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 DogTags
    Will Simple Zen work with the latest release, 1.3.5 ?
    Yes it will work, HOWEVER there are some css changes in 1.3.5. I've uploaded the changes to the downloads section. I've set the css up so that it will STILL work for 1.3.0.2, so you can use the download for 1.3.0.2 as well as 1.3.5.

    In case you've heavily updated your css file, and just want to know the css changes for 1.3.5, here they are:

    STEP 1.
    change
    Code:
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
    	display: inline;
    	white-space: nowrap;
    	}
    to
    Code:
    #navMain ul li, #navSupp ul li, #navCatTabs ul li {
    	display: inline;
    	}

    Step 2.
    change
    Code:
    #navMain ul li a, #navSupp ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #fff;
    	}
    to
    Code:
    #navMain ul li a, #navSupp ul li a {
    	text-decoration: none;
    	padding: 0em 0.9em;
    	margin: 0;
    	color: #fff;
    	white-space: nowrap;
    	}

    Step 3.
    change
    Code:
    #cartAttribsList {
    	margin-left: 1em;
    	}
    to
    Code:
    .cartAttribsList {
    	margin-left: 1em;
    	}

    Step 4.
    ADD
    Code:
    .orderHistList {
    	margin: 1em;
    	padding: 0.2em 0em;
    	}

    Step 5.
    ADD
    Code:
    #cartBoxEmpty, #cartBoxVoucherBalance {
      	font-weight: bold;
      	}

    Step 6.
    change
    Code:
    .centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #navNextPrevWrapperTop, #navNextPrevWrapperBottom, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
    	text-align: center;
    	}
    to
    Code:
    .centeredContent, TH, #cartEmptyText, #cartBoxGVButton, #cartBoxEmpty, #cartBoxVoucherBalance, #navNextPrevWrapperTop, #navNextPrevWrapperBottom, #navCatTabsWrapper, #navEZPageNextPrev, #bannerOne, #bannerTwo,  #bannerThree,  #bannerFour,  #bannerFive,  #bannerSix, #siteinfoLegal, #siteinfoCredits, #siteinfoStatus, #siteinfoIP, .center, .cartRemoveItemDisplay, .cartQuantityUpdate, .cartQuantity, .cartTotalsDisplay, #cartBoxGVBalance, .leftBoxHeading, .centerBoxHeading, .productListing-data, .accountQuantityDisplay, .ratingRow, LABEL#textAreaReviews, #productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage, .centerBoxContents, .specialsListBoxContents, .categoryListBoxContents, .additionalImages, .centerBoxContentsSpecials, .centerBoxContentsAlsoPurch, .centerBoxContentsFeatured, .centerBoxContentsNew, .gvBal, .attribImg {
    	text-align: center;
    	}
    That's IT!

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

    Default Re: Simple Zen Template - available in download section

    I've expanded jettrue's list to include explanations for why each of these changes was done and how to implement them both for 1.3.5 but also, in most cases, even if you don't plan to upgrade yet. You can find this in this thread.
    Kuroi Web Design and Development | Twitter

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

  9. #49
    Join Date
    Jul 2005
    Posts
    57
    Plugin Contributions
    0

    Default Re: Simple Zen Template - available in download section

    has anyone been able to fix the issue with the clickable links in IE for the header. This is just a plain irritation. I have IE but its still out there and still used (why, why not lol)

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

    Default Re: Simple Zen Template - available in download section

    has anyone been able to fix the issue with the clickable links in IE for the header. This is just a plain irritation. I have IE but its still out there and still used (why, why not lol)
    Man! I swore I fixed that! In fact I know I fixed that! Yet when I re-download the upload where I said "I fixed it", it doesn't fix the issue. So, somehow I mixed up a new file with an old file, and now I don't know what it was that I did to fix it.

    I came up with a temporary fix that seems to work, until (if ever) I come up with a better solution.

    Code:
    * html #tagline li {
      margin-left:-165px;
      }
    It's basically telling IE *ONLY* to start the links for the image map 165 pixels to the left. For some reason that is over my head, I can't tell why IE wants to start the links 165 pixels to the right. Anyone? Anyone?

 

 
Page 5 of 47 FirstFirst ... 3456715 ... 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

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