Making an image a thumnail in Dreamweaver?

J

John

Is it possible to make an image a thumbnail in dreamweaver so that
when clicked it expands to the bigger image? I am just making a basic
HTML page that is XHTML compatible. It is going to be something I am
to sell on eBay.

Once I have got everything the way I want, would I then just paste the
HTML code into the area on eBay? I'm not entirely sure how the image
part works. Would I need to have the images of the product referenced
to an external site?

If you sell things on eBay I would be interested to know what method
you use for designing the page with your items for sale.

Thanks for your help

John
 
T

Travis Newbury

John said:
Is it possible to make an image a thumbnail in dreamweaver so that
when clicked it expands to the bigger image? I am just making a basic
HTML page that is XHTML compatible. It is going to be something I am
to sell on eBay.

why not go to a page on ebay and see what they are doing?
 
N

Neredbojias

With neither quill nor qualm, John quothed:
Is it possible to make an image a thumbnail in dreamweaver so that
when clicked it expands to the bigger image? I am just making a basic
HTML page that is XHTML compatible.

No you're not. You obviously don't know what you're doing so you are
just adding another convoluted mess to the billions of screwed-up pages
already out there.

If you want to accomplish something positive, learn html. Sell
Dreamweaver to the next sucker on the list.
 
J

Jonathan N. Little

John said:
Is it possible to make an image a thumbnail in dreamweaver so that
when clicked it expands to the bigger image? I am just making a basic
HTML page that is XHTML compatible. It is going to be something I am
to sell on eBay.

Why!!!? Ebay pages without user content is hardly HTML 4.01 Strict
compliant! Adding XHTML will not help. My advice is you do not know HTML
then use the templates that they provide.
 
D

David Segall

Neredbojias said:
If you want to accomplish something positive, learn html. Sell
Dreamweaver to the next sucker on the list.
You seem to think that owning Dreamweaver and knowing HTML are
mutually exclusive. Why?
 
A

Andy Dingley

John said:
Is it possible to make an image a thumbnail in dreamweaver so that
when clicked it expands to the bigger image?

No idea. Can't remember if DW can resize images for you but I doubt it.
Look at Photoshop and "Actions" instead as a bulk image processor /
resizer.

You need pairs of images (large and small) and some trivial HTML You
can template the HTML through tools like Dreamweaver.

Here's the basics

<a href="http://example.org/big.jpg" target="bigpicture"
title="Go clicky clicky see big"
onclick="some_javascript_window_popper
("http://example.org/big.jpg"); return false;"
src="http://example.org/small.jpg"
alt="My cool thing" title="My cool thing" ></a>

You really need to test this from a static page before you try it live
on eBay!

The JavaScript I'm sure you can download from somewhere. It's basically
a call to window.open()

It doesn't even need the image name passed to it as a parameter, if you
write it well (it can get this by looking at the source of the event
and the href parameter in the <a> element).

DON'T use href="javascript: "
DO return false from the onclick event handler.
DO test it first, with JavaScript both turned on and off.

I am just making a basic
HTML page that is XHTML compatible. It is going to be something I am
to sell on eBay.

Don't try to mix XHTML and eBay. XHTML is hard enough on its own.

Once I have got everything the way I want, would I then just paste the
HTML code into the area on eBay?

That's all you can do.

Incidentally, embedding a <style> element into the body of a page is
strictly invalid, but it works with most browsers and can be useful for
eBay.

Would I need to have the images of the product referenced
to an external site?

Yes. Sort out your own hosting for this first and test it before
uploading the auction. Cheaper than paying for auction photo hosting
services.

Remember that your image URLs need to be full absolute URLs, beginning
with http://hostingdomainname.com/...
If you sell things on eBay I would be interested to know what method
you use for designing the page with your items for sale.

Did it once, keep it as a copy on my local server, I just edit the
details and re-upload it each time. It's all wrapped in a <div>, which
keeps things a bit tidier for rendering on the eBay page.

A good technique is to capture some eBay page code and embed your own
stuff in it with "cut here" comment markers around it to remind you.
Then you see how it looks in context.
 
J

Jonathan N. Little

David said:
You seem to think that owning Dreamweaver and knowing HTML are
mutually exclusive. Why?

A generalization -- yes, but one could come to that conclusion with the
types of questions asked by users of it and inspection of the source of
sites produced by it.
 
N

Neredbojias

With neither quill nor qualm, David Segall quothed:
You seem to think that owning Dreamweaver and knowing HTML are
mutually exclusive. Why?

Your premise is wrong. The OP made several comments, not all of them
related to DW.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,169
Latest member
ArturoOlne
Top