Hi Peter,
Thanks for your help! I actually had no HTML knowledge before I messed around with dreamweaver so I'm kinda learning backwards! I think a lot of the problems with this site are down to the fact that I initially used a template and then moved the site on my HD. That seems to have created a bunch of HD-specific URLs.
Anyway, regarding what you suggested, I have done it for the catalogues page but am confused as to what you say it will solve. Were you having problems viewing the original thumbnail image? Some people say there is a problem viewing the thumbs until mouseover, some people say there is not. I suppose that what you suggested would solve this problem as the original image url was wrong but after mouseover and mouseout, it would rectify itself. So that may solve that problem.
- Can you let me know if it's viewing correctly in this respect now?
BUT
The other problem (quite a big one!) is that the central image should change when a thumb is clicked. It works on my computer and it works on my sister-in-law's mac but not on her PC!!! Any ideas about that one? Let me outline how I've done all of these 'behaviours'.
Initial state = thumbxxx.jpg
Mouseover => thumbxxxpink.jpg
Mouseout => thumbxxx.jpg
Click = "blankimage" (central 'please click... image) => xxx.jpg
I did it like this as using dreamweaver's 'restore image on mouseout' restored ALL swaps, including the main picture. I messed around till I got this method. What is interesting is that the original central image ("blankimage") disappears but is not replaced! If you look at the "corporate branding" page, the original image is a collage and this too disappears not to be replaced.
Any solutions there?
Originally Posted by peter_budo
Hi Paul,
it is nice and easy to develop page in dreamweaver, but you always get in trouble if you do not understand basic principle of HTML, CSS and little of scripting.
Don't worry I not gone bully you over that, will try to help you if possible. Last year I had had similar problem when my teacher rush me with my final work on project and I was forced to use Dreamweaver (still prefer typing me code).
For this purpose I used catalogues.htm from your site. Go to deamweaver and Design view, click on first thumbnail which id is "thumbvgcatalogue2", then go to Code view and you see this.
[html]<A onmouseover="MM_swapImage('thumbmwcatalogue1','','/images/catalogues/thumbnails/thumbmwcatalogue1pink.jpg',1)"
onclick="MM_swapImage('blankimage','','/images/catalogues/mwcatalogue1.jpg',1)"
onmouseout="MM_swapImage('thumbmwcatalogue1','','/images/catalogues/thumbnails/thumbmwcatalogue1.jpg',1)"
href="javascript:;">
<IMG id=thumbmwcatalogue1 height=95 src=""
width=100 border=0 name=thumbmwcatalogue1></A>[/html]
Have close look at image tag "IMG". Is there anything wrong? Something missing?
You are missing source image for first loading. src="/images/catalogues/thumbnails/thumbvgcatalogue2.jpg"
That should do it for you now. Any more troubles let me know 