Page 72 of 326 FirstFirst ... 2262707172737482122172 ... LastLast
Results 711 to 720 of 3251
  1. #711
    Join Date
    Jun 2004
    Posts
    184
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Hi:

    Am using this template and it's awesome, specially how you have several in one via colours.

    Anyway, I want to try to rearrange my product info page.

    At the moment I have a few things unavailable but I still want people to have the option of ordering them.

    I have changed the available date but it appears down the very bottom of the page and would like to move this notice maybe under the Add to Cart button or as a bullet point where `manufacturer' is.

    What file(s) am I trying to find to edit and achieve this?

    Thanks
    Ernie

  2. #712
    Join Date
    Mar 2007
    Posts
    56
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Two questions

    How do I expand the width of the left column?

    When I disable modules from the right colum, the grey background of the colum still shows up and the space is not used by the centre column. How can I change this?

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by esugrue View Post
    Hi:

    Am using this template and it's awesome, specially how you have several in one via colours.

    Anyway, I want to try to rearrange my product info page.

    At the moment I have a few things unavailable but I still want people to have the option of ordering them.

    I have changed the available date but it appears down the very bottom of the page and would like to move this notice maybe under the Add to Cart button or as a bullet point where `manufacturer' is.

    What file(s) am I trying to find to edit and achieve this?

    Thanks
    Ernie
    Try looking in the includes/templates/cherry_zen/templates/tpl_product_info_display.php. Its nicely segregated into sections; you should be able to find the date available section, and move it where you want it.

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by maraud View Post
    Two questions

    How do I expand the width of the left column?

    When I disable modules from the right colum, the grey background of the colum still shows up and the space is not used by the centre column. How can I change this?
    From the readme, TIPS section:

    Code:
    3. To have ONLY left sideboxes, open up includes/templates/cherry_zen/css/stylesheet.css and remove the padding-right from the .outer section:
    
    .outer {
    padding-left: 165px; /* Same width as margin-left for the float-wrap div */
    padding-right: 150px; /* Our right column width */
    }
    
    and remove the background image from #contentMainWrapper.
    To change the width of the left column, open up the admin, and change the left column width under "Configuration", "Layout Settings".

    Lets say you increase the width to 170px (20px more - the original is 150px), you'll need to open up includes/templates/cherry_zen/css/stylesheet.css and change all of the instances of 165px in the section below, to 185px (20 px more):
    Code:
    .outer {
    	padding-left: 165px; /* Same width as margin-left for the float-wrap div */
    	padding-right: 150px; /* Our right column width */
    	}
    	
    .inner {
    	width: 100%;
    	}
    
    .float-wrap {
    	float: left;
    	width: 97%;
    	margin-left: -165px; /* Same length as .outer padding-left but with negative value */
    	}
    
    #content {
    	float: right;
    	margin-right: -165px; /* Same length as .outer padding-left but with negative value */
    	width: 100%;
    	line-height:1.6;
    	position: relative; /* IE needs this  */
    	}
    NOW, the grey background behind the sidebox will still be 150px wide, so you need to open up includes/templates/cherry_zen/images/sidebox.gif and change it to 170px wide, and re-upload the changed image.

  5. #715
    Join Date
    Apr 2006
    Posts
    23
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    Great Template!!

    How do I change the item description font styles? So I can add the description when I create a new product and all of the descriptions on the site have the same style? Such as arial font bold font size and color?

    Thanks!!

  6. #716
    Join Date
    Jan 2007
    Posts
    1,483
    Plugin Contributions
    10

    Default Re: Cherry Zen Template Support Thread

    Hi Jade and fellow Zenners,

    I hope that you have had a nice holiday season and happy new year!

    I've been wrestling with this little cross-browser compatibility issue for a while and I am hoping that you will be able to help me figure it out.

    When I have product attributes the attributes box on the product_info_display page looks fine in IE6 and 7, I have the option names set to "3" so the image appears above the text and radio button. But in Firefox 2.0.0.2/Netscape 9/Opera 9.25 the radio button is way off to the left.

    I've attached a few screenshots to show what's happening, and if you want to see it live go to http://www.drumfactorydirect.com/ind...oducts_id=1910

    I've been messing around with the stylesheet, tpl_modules_attributes.php and modules/attributes.php but I can't get the radio button to get closer to the image and option value/price like it is in IE6/7. It's almost like there is some hidden field that is blocking the radio box from moving closer to the image/name/price.

    Do you have any ideas as to what needs to be done to get it to look somewhat better? It doesn't have to be exactly like IE6/7 but it's so far away from the rest of the attribute info that it can be a little confusing as to which radio button goes with which attribute.

    Thanks for any help!

    Matt
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	ie7attribs.jpg 
Views:	236 
Size:	8.3 KB 
ID:	3259   Click image for larger version. 

Name:	ffattribs.jpg 
Views:	245 
Size:	8.1 KB 
ID:	3260  

    Zen Cart and it's community are the best!!

  7. #717
    Join Date
    Oct 2007
    Posts
    26
    Plugin Contributions
    0

    Default Re: Background Image in Logo/Tag Area

    Quote Originally Posted by RtX View Post
    Hi,
    I want to put a background image behind my logo and sales tag line (in the same space at the top of the page). Can anyone tell me how/what I need to do and if there is anything I should be aware of , for example, resolution or size-wise?
    (I am using Cherry Zen template). Anyone able to help me?
    TIA,
    RtX

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by lankeeyankee View Post
    Hi Jade and fellow Zenners,

    I hope that you have had a nice holiday season and happy new year!

    I've been wrestling with this little cross-browser compatibility issue for a while and I am hoping that you will be able to help me figure it out.

    When I have product attributes the attributes box on the product_info_display page looks fine in IE6 and 7, I have the option names set to "3" so the image appears above the text and radio button. But in Firefox 2.0.0.2/Netscape 9/Opera 9.25 the radio button is way off to the left.

    I've attached a few screenshots to show what's happening, and if you want to see it live go to http://www.drumfactorydirect.com/ind...oducts_id=1910

    I've been messing around with the stylesheet, tpl_modules_attributes.php and modules/attributes.php but I can't get the radio button to get closer to the image and option value/price like it is in IE6/7. It's almost like there is some hidden field that is blocking the radio box from moving closer to the image/name/price.

    Do you have any ideas as to what needs to be done to get it to look somewhat better? It doesn't have to be exactly like IE6/7 but it's so far away from the rest of the attribute info that it can be a little confusing as to which radio button goes with which attribute.

    Thanks for any help!

    Matt
    Remove .attribImg from this long line in the css.

    Code:
    #cartProdTitle,.centeredContent,TH,#cartEmptyText,#cartBoxGVButton,#cartBoxEmpty,#cartBoxVoucherBalance,#navCatTabsWrapper,#navEZPageNextPrev,#bannerOne,#bannerTwo,#bannerThree,#bannerFour,#bannerFive,#bannerSix,#siteinfoLegal,#siteinfoCredits,#siteinfoStatus,#siteinfoIP,.center,.cartRemoveItemDisplay,.cartQuantityUpdate,.cartQuantity,.cartTotalsDisplay,#cartBoxGVBalance,.leftBoxHeading,.centerBoxHeading,.rightBoxHeading,.productListing-data,.accountQuantityDisplay,.ratingRow,LABEL#textAreaReviews,#reviewsInfoDefaultProductImage,#productReviewsDefaultProductImage,#reviewWriteMainImage,.centerBoxContents,.specialsListBoxContents,.categoryListBoxContents,.additionalImages,.centerBoxContentsSpecials,.centerBoxContentsAlsoPurch,.centerBoxContentsFeatured,.centerBoxContentsBestSellers,.centerBoxContentsNew,.gvBal,.attribImg,#linksboxContent {
    text-align:center;
    }

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

    Default Re: Cherry Zen Template Support Thread

    Quote Originally Posted by CarolinaReefs View Post
    Great Template!!

    How do I change the item description font styles? So I can add the description when I create a new product and all of the descriptions on the site have the same style? Such as arial font bold font size and color?

    Thanks!!
    You can change the product description's font with this tag in the css:

    #productDescription {
    font-weight:bold;
    }

    Of course adding whatever font style you like.

  10. #720
    Join Date
    Mar 2007
    Posts
    56
    Plugin Contributions
    0

    Default Re: Cherry Zen Template Support Thread

    [quote=jettrue;490673]From the readme, TIPS section:

    Code:
    3. To have ONLY left sideboxes, open up includes/templates/cherry_zen/css/stylesheet.css and remove the padding-right from the .outer section:
     
    .outer {
    padding-left: 165px; /* Same width as margin-left for the float-wrap div */
    padding-right: 150px; /* Our right column width */
    }
     
    and remove the background image from #contentMainWrapper.



    Thanks

 

 

Similar Threads

  1. Simple Zen Template - Support Thread
    By jettrue in forum Addon Templates
    Replies: 461
    Last Post: 27 Apr 2013, 01:33 AM
  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. Mix Cherry Zen Template with Default template
    By Globie in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2008, 08:21 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