Results 1 to 10 of 10
  1. #1
    Join Date
    Feb 2007
    Posts
    14
    Plugin Contributions
    0

    help question Product listing horizontal?

    At this moment my products in a category are listed vertical.
    I found how to create rows in the category list and have 3 images in one row. Is this also possible for the products? I can't seem to find it.

    What I would like:

    ---PIC---------------------PIC-------------------PIC
    description-------------description----------description

    Thanks!

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

    Default Re: Product listing horizontal?

    I think what you're looking for is under

    "Configuration", "product listing", and change product listing layout style to "columns".

  3. #3
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,761
    Plugin Contributions
    9

    Default Re: Product listing horizontal?

    The product info page is a single item...if you are referring to the product listing page - you will need the column grid module
    Zen-Venom Get Bitten

  4. #4
    Join Date
    Mar 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Product listing horizontal?

    Hello kobra,

    I just need the same thing as Etal200, horizontal images because I have many iterms to show in my cart and really customers get tired of rolling the mouse.
    You mentioned "column grid module", where can I find this module?

    Thanks

    Ana

  5. #5
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Product listing horizontal?

    In the Downloads section (link at top pf page).

  6. #6
    Join Date
    Mar 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Product listing horizontal?

    Thank you for your help. I will check the download section. When you have a chance go to: http://thebrokercloset.com/cart/index.php?main_page= and check what we have done up to now. We cannot get the Logo The Broker Closet to go to the left or even minimize the gray space and take The Tag Line off. Please tell me if you see that the page has too dark colors for apparel.
    You can email me also at [email protected]

    Thank you,

    Ana

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

    Default Re: Product listing horizontal?

    Quote Originally Posted by bahiakey View Post
    Thank you for your help. I will check the download section. When you have a chance go to: http://thebrokercloset.com/cart/index.php?main_page= and check what we have done up to now. We cannot get the Logo The Broker Closet to go to the left or even minimize the gray space and take The Tag Line off. Please tell me if you see that the page has too dark colors for apparel.
    You can email me also at [email protected]

    Thank you,

    Ana
    To un-center the logo, just remove this from the css (the text-align:center is centering it):

    Code:
    #logoWrapper{
    	/*background-color: #444;*/
    	text-align: center;
    }
    If you don't plan on using the tagline at all, an easy way to get it not to show is to add this to your stylesheet:

    Code:
    #taglineWrapper {display:none;}
    And if your looking to get rid of some of the spacing around the logo, change:
    Code:
    .clearBoth {
    	clear:both;
    }
    to

    Code:
    .clearBoth {
    	clear:both;
    	height:0;
    	margin:0;
    	font-size: 1px;
    	line-height: 0;
    	}

  8. #8
    Join Date
    Mar 2007
    Posts
    17
    Plugin Contributions
    0

    Default Re: Product listing horizontal?

    Dear Jettrue

    Thank you very much! I will do as you say and will keep in touch with you. My daughter is helpling me to do this website, all the images are mine and she is trying to take care of the cart configuration side at the same time I am learning too. It is not easy you know, but thank God for all of you that are very helpful in this forum.
    The background template she got for me free, but I would like to install other colors to see if my items will look different. Do you know where I can go to get free background templates in other colors other than Black and Gray.

    My best regards,

    Ana
    From Miami

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

    Default Re: Product listing horizontal?

    Quote Originally Posted by bahiakey View Post
    Dear Jettrue

    Thank you very much! I will do as you say and will keep in touch with you. My daughter is helpling me to do this website, all the images are mine and she is trying to take care of the cart configuration side at the same time I am learning too. It is not easy you know, but thank God for all of you that are very helpful in this forum.
    The background template she got for me free, but I would like to install other colors to see if my items will look different. Do you know where I can go to get free background templates in other colors other than Black and Gray.

    My best regards,

    Ana
    From Miami
    All of the colors are defined in your stylesheet, so you can change that easily.

    For example, the main site color is defined here:

    #mainWrapper {
    background-color: #444;
    text-align: left;
    width: 99%;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    }

    the #444 is main background color, the lightest gray.

    You can change that number to another color number. Here's a page with different color numbers:

    http://www.w3schools.com/html/html_colornames.asp

    The darkest color on your website (behind the sidebox titles) is #333, the next darkest gray (behind the sideboxes content) is #393939, and most (if not all) of the border colors are #222.

    The text colors are controlled by the portions of the css that are like this:

    color: #eee;

    You can also change the text colors to whatever you like.

  10. #10
    Join Date
    Jul 2005
    Location
    Upstate NY
    Posts
    22,010
    Plugin Contributions
    25

    Default Re: Product listing horizontal?

    Especially with this template, it will be very easy for you to change the colors by yourself.

    In your /includes/templates/mostlygrey/css/stylesheet.css, find
    body {
    margin: 0;
    font-family: lucida sans unicode, verdana, arial, helvetica, sans-serif;
    font-size: 80%;
    line-height: 160%;
    color: #eee;
    background-color: #222;
    }

    color: is the default text color for the site, and background-color: is the overall background visible at the edges.

    #mainWrapper {
    background-color: #444;

    is most of the visible background.

    Search your stylesheet for background-color to find all the elements that have different colors applied, and try changing them one by one.
    To find which tags control each element on your page, get the Firefox browser with its Web Developer extension, if you don't have it already. The Information > Display Element Information button will give you all the names.


    OK, what Jade said : )

 

 

Similar Threads

  1. Help needed with Horizontal Line in product listing
    By marvin in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 27 Sep 2010, 10:19 PM
  2. Making horizontal space between products in product grid listing
    By alwaysriding in forum Basic Configuration
    Replies: 7
    Last Post: 7 Oct 2009, 03:24 PM
  3. Horizontal and vertical borders between products in product listing
    By pckomplet in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 23 Jul 2009, 10:28 PM
  4. How do you add Horizontal Divider on Product Listing Pages?
    By sfklaas in forum General Questions
    Replies: 1
    Last Post: 25 Jun 2009, 04:53 AM
  5. Adding horizontal ruler on product listing page?
    By Clever Trevor in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 13 Jun 2009, 09:54 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