Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

This is a discussion on "Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site" within the Web Page Design section. This forum, and the thread "Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Apr 5th, 2007, 21:32
Junior Member
Join Date: Mar 2007
Location: California's Central Coast
Age: 31
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

I am building a storefront and have a couple questions?

How do I arrange multiple images on a page without using tables. I have used div tags for my header container and footer, but what do I use in the container to arrange my images?

How do I create thumbnails?
Reply With Quote

  #2 (permalink)  
Old Apr 6th, 2007, 00:24
BGarner's Avatar
Reputable Member
Join Date: Oct 2006
Location: In front of the computer.
Posts: 213
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

An example site might help us to be a little more specific as to exactly what you want. There are various methods to position your images and an example would be helpful.

Thumbnails are just small versions of your larger image. Most standard imaging programs will allow you to resize an image to a certain percentage of the original size.
Reply With Quote
  #3 (permalink)  
Old Apr 6th, 2007, 01:49
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

I'm not sure if this is 100% correct but I've taken images and put them in a <p> tag, floated them all left (3 images). Add a right margin bottom margin to each photo with css and they space out nicely.
When you are ready to start a new line of photos, add another <p> tag.
I add margin-bottom to my <p> tags so that I have a bit more room between lines of photos.

Code: Select all
 <p align="center"><img src="fs_teaser1.jpg" alt="Fairy Stone Necklace Collection" border="0" class="imageleft" />
<img src="pendant_teaser1.jpg" alt="pendant necklace collection" border="0" class="imageleft" />
<img src="bgj_teaser1.jpg" alt="Beaded Gemstone Jewelry Collection" border="0" class="imageleft" /></p>
My css for each image looks like this:
Code: Select all
.imageleft {
	float: left;
	margin-right: 5px;
	margin-bottom: 10px;
	}
Reply With Quote
  #4 (permalink)  
Old Apr 6th, 2007, 03:51
Junior Member
Join Date: Mar 2007
Location: California's Central Coast
Age: 31
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

Quote:
Originally Posted by BGarner View Post
An example site might help us to be a little more specific as to exactly what you want. There are various methods to position your images and an example would be helpful.

Thumbnails are just small versions of your larger image. Most standard imaging programs will allow you to resize an image to a certain percentage of the original size.
I'm pretty sure I didn't word my question right; but I want a simple version of this... http://www.rocawear.com/shop/men.php

notice what happens when you click on the images...
Reply With Quote
  #5 (permalink)  
Old Apr 6th, 2007, 12:05
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

Clicking on the photos simply opens a brand new html page.

That site was done in tables so it's probably not a good example of how to do things.
Reply With Quote
  #6 (permalink)  
Old Apr 6th, 2007, 15:33
Junior Member
Join Date: Mar 2007
Location: California's Central Coast
Age: 31
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

Quote:
Originally Posted by Lchad View Post
Clicking on the photos simply opens a brand new html page.

That site was done in tables so it's probably not a good example of how to do things.
Yeah that site was weak. I didn't even bother to look at the code. I know what I am going to do, I will use your example and do something similiar to the site I posted by just having the pictures open a new page. I'm sorry for posting such an incoherent question. My brain is just on overload these days, between designing my site, my clothing and getting the business side of things in line..my brain is pretty fried right now... Thank you
Reply With Quote
  #7 (permalink)  
Old Apr 6th, 2007, 16:35
JustinStudios's Avatar
SuperMember

SuperMember
Join Date: Mar 2007
Location: USA
Posts: 406
Blog Entries: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to JustinStudios
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

Ok, being one who has programmed tons of ecommerce sites I would like to reccommend a program to use for your image resizing. I used this program to resize our last client (who had 22,000 images) and they needed 22,000 thumbnails. Without this tool I would have been dead... and best of all its Completely FREE! It's called FastStone Photo Resizer. Just click the name to go to the download page. All you do is set it to resize the images , rename them, or do both! you can even convert them to a new extension all in this one free program. I edited all 22,000 images in a single day with this program, the guy before me it took him 8 months. My boss was very happy to say the least.
Reply With Quote
  #8 (permalink)  
Old Apr 6th, 2007, 17:09
Junior Member
Join Date: Mar 2007
Location: California's Central Coast
Age: 31
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Question regarding Graphical Layout: Images/Thumbnails in an E-Commerce site

Quote:
Originally Posted by NoobSmith View Post
Ok, being one who has programmed tons of ecommerce sites I would like to reccommend a program to use for your image resizing. I used this program to resize our last client (who had 22,000 images) and they needed 22,000 thumbnails. Without this tool I would have been dead... and best of all its Completely FREE! It's called FastStone Photo Resizer. Just click the name to go to the download page. All you do is set it to resize the images , rename them, or do both! you can even convert them to a new extension all in this one free program. I edited all 22,000 images in a single day with this program, the guy before me it took him 8 months. My boss was very happy to say the least.
Thank you, I like free stuff as I am on a very limited budget. I will download that program and play with it as soon as I get home.
Reply With Quote
Reply

Tags
css, xhtml

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with thumbnails of webpages for my site 0413 Starting Out 7 Sep 20th, 2007 08:51
New E-Commerce Site PizzImperfect Website Planning 4 Jul 10th, 2007 04:11
List Layout Question dawg9 Web Page Design 1 Jul 9th, 2007 15:16
Starting new e-commerce site lyndaelyzoo E-Commerce and Business 2 Jul 9th, 2007 14:55
Downsizing e-commerce site Mel26 Introduce Yourself 15 May 26th, 2006 08:25


All times are GMT. The time now is 23:31.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43