Page 1 of 3 123 LastLast
Results 1 to 10 of 30
  1. #1
    Join Date
    Nov 2009
    Location
    Los Angeles
    Posts
    16
    Plugin Contributions
    0

    Default minimal carts - maximum customization?

    I need to make VERY minimal carts. Most of the carts I'd like to make would sell only a single item. And the cart I'm trying to customize now will have only 10 items.

    I don't need ANYTHING on the page from the default template except:
    a center column for the products
    a right sidebox shopping cart, (no left sidebox/column at all) and -
    the UPS module for shipping calculation.

    I want my own background image - a simple gradient - tiled down the page, and the only items on the page would be:
    a header image,
    a footer image, and
    the product line-up.

    I don't want colored backgrounds for the columns - I want the background image to show through.

    As I plow through the customization and get rid of all the stuff I don't want, the more I pare it down the more it seems like I won't be able to achieve this goal. All the Zen Carts I've seen have looked more or less the same, with just header and color scheme variations. None seem to have gone as far as I want to with customization. Some things just seem like they are not editable.

    So now I'm beginning to wonder if Zen Cart is the cart to use.

    Any advice would be most appreciated.

    FYI I'm using 1.3.8a.

  2. #2
    Join Date
    Nov 2007
    Location
    Melbourne, Australia
    Posts
    541
    Plugin Contributions
    0

    Default Re: minimal carts - maximum customization?

    Quote Originally Posted by adville View Post
    I don't need ANYTHING on the page from the default template except:
    a center column for the products
    a right sidebox shopping cart, (no left sidebox/column at all) and -
    the UPS module for shipping calculation.
    Great! Dont worry about things that you dont need. Just deactivate them.

    You can easily disable the right column in the Admin Configuration > ... > Disable Left Sidebox Globally or just dont activate any sidebox on the left column.

    Quote Originally Posted by adville View Post
    I want my own background image - a simple gradient - tiled down the page, and the only items on the page would be:
    1. a header image,
    2. a footer image, and
    3. the product line-up.
    Your customizations fall under your so called "just header and color scheme variations" category.

    1 + 2 can be changed in the stylesheet.

    3. is in the Admin section of your shopping cart.

    Quote Originally Posted by adville View Post
    I don't want colored backgrounds for the columns - I want the background image to show through.
    Excellent! Don't assign a color for the columns in your stylesheet.

    Quote Originally Posted by adville View Post
    As I plow through the customization and get rid of all the stuff I don't want, the more I pare it down the more it seems like I won't be able to achieve this goal.
    I wonder why. How far have you gotten with your customization? Maybe post a link of your website.

    Quote Originally Posted by adville View Post
    All the Zen Carts I've seen have looked more or less the same, with just header and color scheme variations. None seem to have gone as far as I want to with customization. Some things just seem like they are not editable.
    Now, I dont know which carts you have seen, but many websites have customized their Zencart a lot and they look very nice.

    Quote Originally Posted by adville View Post
    So now I'm beginning to wonder if Zen Cart is the cart to use.
    You are strongly encouraged to try other shopping carts to learn your own lesson about individual customization.

    Apart from the left sidebox no showing, the rest is more or less CSS customisation, smart use of images and moving sections of php code in template files to suit your individual website arrangements.

  3. #3
    Join Date
    Nov 2009
    Location
    Los Angeles
    Posts
    16
    Plugin Contributions
    0

    Default Re: minimal carts - maximum customization?

    Many thanks for a comprehensive reply.

    The pathetic state of my cart - stripped down as far as I've manged so far:
    http://www.funnyguycards.com/cards/

    I want to remove all those horizontal bars that contain the Home link, as well as removing the Home link itself.

    "...Don't assign a color for the columns in your stylesheet..."

    I don't know where on the stylesheet so many of these elements are - such as the columns, the place to define background color, background image, header, footer.

    My trouble is that I'm used to making web pages using Dreamweaver. And I'm not great at hand-coding stuff, so this is all a bit intimidating.

    again, thanks.

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: minimal carts - maximum customization?

    Quote Originally Posted by adville View Post
    Many thanks for a comprehensive reply.

    The pathetic state of my cart - stripped down as far as I've manged so far:
    http://www.funnyguycards.com/cards/

    I want to remove all those horizontal bars that contain the Home link, as well as removing the Home link itself.

    "...Don't assign a color for the columns in your stylesheet..."

    I don't know where on the stylesheet so many of these elements are - such as the columns, the place to define background color, background image, header, footer.

    My trouble is that I'm used to making web pages using Dreamweaver. And I'm not great at hand-coding stuff, so this is all a bit intimidating.

    again, thanks.
    lets start with this:

    I want my own background image - a simple gradient - tiled down the page

    open your stylesheet.css (includes/templates/my_own_template/css/stylesheet.css)

    Find the following:

    Code:
    body {
    	margin: 0;
    	font-family: verdana, arial, helvetica, sans-serif;
    	font-size: 62.5%;
    	color: #FFFFFF;
    	background-color: #000000
    	background-image:includes/templates/my_own_template/images/TurqBackground.png;
    	}

    Make the following changes:

    Code:
    body {
    	margin: 0;
          padding: 0;
    	font-family: verdana, arial, helvetica, sans-serif;
    	font-size: 62.5%;
    	color: #000; 
    	background: url(../images/TurqBackground.png);
    }

  5. #5
    Join Date
    Nov 2009
    Location
    Los Angeles
    Posts
    16
    Plugin Contributions
    0

    Default Re: minimal carts - maximum customization?

    Wow - so much help here. This is very encouraging. Thanks! I made that change Clyde:

    http://www.funnyguycards.com/cards/

  6. #6
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: minimal carts - maximum customization?

    Quote Originally Posted by adville View Post
    Wow - so much help here. This is very encouraging. Thanks! I made that change Clyde:

    http://www.funnyguycards.com/cards/
    Moving on:

    I don't want colored backgrounds for the columns - I want the background image to show through.

    open your stylesheet.css (includes/templates/my_own_template/css/stylesheet.css)

    find the following:

    Code:
    #mainWrapper {
    	background-color: #ffffff;
    	text-align: left;
    	width: 100%;
    	vertical-align: top;
    	}
    	
    #navColumnTwo {
    	background-color: #00BFBF;
    	}
    make the following changes:

    Code:
    #mainWrapper {
    	background-color: transparent;
    	text-align: left;
    	width: 100%;
    	vertical-align: top;
    	}
    	
    #navColumnTwo {
    	background-color: transparent;
    	}

  7. #7
    Join Date
    Nov 2009
    Location
    Los Angeles
    Posts
    16
    Plugin Contributions
    0

    Default Re: minimal carts - maximum customization?

    Clyde! Thanks for holding my hand on this :)

    Duly edited:
    http://www.funnyguycards.com/cards/

  8. #8
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: minimal carts - maximum customization?

    Quote Originally Posted by adville View Post
    Clyde! Thanks for holding my hand on this :)

    Duly edited:
    http://www.funnyguycards.com/cards/
    You still need to do the right column

    open your stylesheet.css (includes/templates/my_own_template/css/stylesheet.css)

    find the following:

    Code:
    #navColumnTwo {
    	background-color: #00BFBF;
    	}
    and make the following change:

    Code:
    #navColumnTwo {
    	background-color: transparent;
    	}

  9. #9
    Join Date
    Nov 2009
    Location
    Los Angeles
    Posts
    16
    Plugin Contributions
    0

    Default Re: minimal carts - maximum customization?


  10. #10
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: minimal carts - maximum customization?

    Quote Originally Posted by adville View Post
    Next

    and the only items on the page would be:
    a header image, a footer image

    If you haven't done so already, create your header and footer images and save them to:

    includes/templates/my_own_template/images/

    You might want to make the following change:

    open your stylesheet.css (includes/templates/my_own_template/css/stylesheet.css)

    find the following:

    body {
    margin: 0;
    padding: 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #000;
    background: url(../images/TurqBackground.png);
    }

    and make the following change:

    body {
    margin: 0;
    padding: 0;
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 62.5%;
    color: #fff;
    background: url(../images/TurqBackground.png);
    }

    }
    Last edited by clydejones; 15 Nov 2009 at 08:06 PM.

 

 
Page 1 of 3 123 LastLast

Similar Threads

  1. Minimal Information for Downloadable Products
    By RicM in forum Managing Customers and Orders
    Replies: 5
    Last Post: 25 May 2011, 07:21 AM
  2. Maximum Package Weight You Will Ship - Maximum?
    By WellCool in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 25 Nov 2010, 04:00 PM
  3. minimal payment information?
    By Certainly confused in forum Addon Payment Modules
    Replies: 2
    Last Post: 14 Oct 2010, 07:42 PM
  4. Minimal amount on an order
    By KirShtoltz in forum General Questions
    Replies: 1
    Last Post: 31 Oct 2009, 03:23 AM
  5. Minimal Customer Information at checkout
    By Sbross in forum Managing Customers and Orders
    Replies: 1
    Last Post: 12 Mar 2007, 12:04 AM

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