Quantcast

Forums | MacLife

You are not logged in.

#1 2007-07-08 9:55 am

wordwench
Member
Registered: 2007-07-08
Posts: 4

Couloir and iWeb

Hello, all.

I recently launched my new professional site using iWeb, and as I know next to nothing about HTML, thought this would be a less painful way to go. Not so. The latest issue I am having is with their slide show assets, so I found Couloir.

Couloir is not playing nice with my images. Some of the color images load up distorted, stretched portrait, when they are in fact landscape. Sometimes the captions are cut off mid sentence, sometimes they don't show up at all (all images have captions). This does not happen on all images.

www.claudiajulian.com

This happens more on the "illustrations" page slide show. Only 1 color image on the "cartoons" page has this problem. (Image 8,9,10 on the illustrations page are good examples)

If you click on each thumbnail, it  opens correctly.

Is there a way to fix this?

I'd also like to make the slide show images a little bit bigger, proportionally, filling more of the screen, without pixelation, of course. Would it also be too much to have the "next" "previous" chevrons visable and not just a mouse-over?

Do I ask too much? The image loading correctly is the biggest issue.

If you respond, please use small words. To me, looking for HTML code is like fishing for a single eyelash in a bowlful of chocolate pudding.

Thanks all

Claudia

Offline

 

#2 2007-07-08 10:30 pm

Scott
Zombie Gorilla
From: Oregon
Registered: 2002-12-07
Posts: 3446
Website

Re: Couloir and iWeb

First off a couple of tips when making a post asking for assistance.
1. Be descriptive and provide links.  I had no idea what "Couloir" was.  I thought you were misspelling 'color'  There are about a billion random little scripts for pages.  Don't assume people know what you are talking about.  After I realized that it wasn't a color issue google helped me figure out what you were talking about.

2. Provide technical details on what you are trying to do, how you did it and provide links to the files.  I had to reverse engineer what you did to find the the image scripts, which are the problem here. I have no idea how you generated them or what tools you used.  Also provide details to what steps you already tried and what the results were.

3. Provide specific contextual details regarding reproducing the problem. For example, saying illustrations 8,9,10 isn't very helpful since they are named on the page not numbered.  Though it wasn't hard to find them, if you are people to help you out, it common courtosy to do some of the footwork.  People will be much more inclined to help if they don't have to jump through a bunch of hoops to figure out the problem.

Solution:
-------------------------------------


It appears* to be a problem with naming and illegal characters. It also appears to affect almost every picture in the slide show.  It is less obvious on some, but still there. Especially if you back and forth.  For example the 3rd (Johnny Reading seed cover) appears fine, but if you click  next the previous the size is wrong.
If you take a look at the illustrations.js : http://claudiajulian.com/Illustrations_ … rations.js
You will see that there are strange characters in the titles.  You need to remove these and replace them with the proper ones, and escaped properly.  Alternately you could entity codes for them, but that still may be a problem with the js.  I would try both approaches to see which one works best.


* I say "appears" because I didn't download and trouble shoot the script locally.  I spent enough time on just trying to sort it out.  You should try the approaches I suggested and if it still doesn't work, repost.

The mouse over thing, probably is best to have it invisible then appear, so you don't have it continually on your images.  However you should be able to change it in the master.css file located in http://claudiajulian.com/SlideShow_assets/css

A more user friendly approach would be to have the next/last links continually displayed above or below the image (preferably above, independently located from the image.)

Let us know if that fixes it.


http://www.greatgamesexperiment.com/images/logo_kit/468x60-Blue.gif

Offline

 

#3 2007-07-09 2:51 pm

wordwench
Member
Registered: 2007-07-08
Posts: 4

Re: Couloir and iWeb

Scott- Thank you for the time you took to look over my site. I am generally a courteous and intelligent person but confess ignorance of web design (at least the coding part). I have been on a few Mac help forums and that is where I learned of the Couloir slideshow assets and how it could be substituted for the iWeb slide show assets.  I figured if it was talked up on the Mac forums, it was a commonly know program for those working with iWeb. I figured anyone responding would have some familiarity with Couloir and iWeb (well, more than I do, anyways).

As for specific examples, when I referred to the "illustrations" Page of my site, illustrations 8,9,10, I was referring to the slide show, (since my question was about slide show assets) where each image is numbered. I thought this would be a more efficient way of locating examples of my problem, other than listing each by its' caption. Wrong again, I guess.

All I did was remove the iWeb slide show asset folder and replace it with the Couloir slide show asset folder. I did this via Fetch, ( Mac friendly FTP) to my ISP (iPowerWeb), not a .Mac account.

I've noticed that Fetch adds a .txt tag to html files, so I go through each file and remove that tag.

As for your suggestions: I have no idea how the coding errors occured, as iWeb does all the coding for you. If there are errors in each picture of the slide show, why are only a handful effected when viewing?

Also, I do no understand what you wrote here:

"You need to remove these and replace them with the proper ones, and escaped properly.  Alternately you could entity codes for them, but that still may be a problem with the js."

Thank you again for your time.

Offline

 

#4 2007-07-09 11:32 pm

Stan
Member
From: Rock Island
Registered: 2002-04-09
Posts: 713

Re: Couloir and iWeb

wordwench wrote:

Also, I do no understand what you wrote here:

"You need to remove these and replace them with the proper ones, and escaped properly.  Alternately you could entity codes for them, but that still may be a problem with the js."

I think Scott is referring to the use of ampersands in the file names of some of your photos. i.e. B&Z.jpg. Since ampersands are used in HTML, you should use & instead. I also saw this: ’ everywhere there was supposed to be an apostrophe. To "escape" that you would write

Code:

’

or maybe you could just write

Code:

& # 8 2 1 7 ;

(without the spaces) to get a real apostrophe.

To "escape" a character means to replace it with something that the browser won't read as code. That's why ampersands shouldn't be used.

Offline

 

#5 2007-07-10 12:37 am

Scott
Zombie Gorilla
From: Oregon
Registered: 2002-12-07
Posts: 3446
Website

Re: Couloir and iWeb

Stan wrote:

I think Scott is referring to the use of ampersands in the file names of some of your photos.
...
To "escape" a character means to replace it with something that the browser won't read as code. That's why ampersands shouldn't be used.

Nope and nope.

Escaping a character is a way of telling the interpreter that the next is handled differently, usually literally.

For example in an attribute like title, it is often surrounded by single or double quotes.  So if you actually want to display the delimiting character you have to escape it. So if you want to display in the title:
Scott's iPod
and you are delimiting it with single quotes,

Code:

title = 'Scott's iPod'

Will simply break as the browser will thing the title ends after the second and the rest is garbage.  And will cascade.  So you either need to change delimiters or escape it. So you could do it like this by changing delimiters:

Code:

title = "Scott's iPod"

or escape it:

Code:

title = 'Scott\'s iPod'

The backslash tells it to treat the following character as display text rather than closing the previous single quote.  That is really about all you need to know about it for these purposes (HTML).  For things like regex and other langs it will very and other things may need to be escaped.


http://www.greatgamesexperiment.com/images/logo_kit/468x60-Blue.gif

Offline

 

#6 2007-07-10 2:54 am

Alien
Forum Czar
Administrator
From: Republic of Amsterdam
Registered: 1999-07-05
Posts: 16942
Website

Re: Couloir and iWeb

A single quote isn't an apostrophe, you heathen!

,xtG
.tsooJ


http://macstack.net/forums/images/smilies/lol.gif

Offline

 

#7 2007-07-10 8:44 pm

wordwench
Member
Registered: 2007-07-08
Posts: 4

Re: Couloir and iWeb

Boys, please- don't fight- we can all take barbecue together.

I think I've fixed the slide show issue, thanks to your pointers.

Play nice.

Offline

 

#8 2007-07-10 10:38 pm

Scott
Zombie Gorilla
From: Oregon
Registered: 2002-12-07
Posts: 3446
Website

Re: Couloir and iWeb

Alien wrote:

A single quote isn't an apostrophe, you heathen!

It is in this country.  wink


http://www.greatgamesexperiment.com/images/logo_kit/468x60-Blue.gif

Offline

 

#9 2007-07-11 3:18 am

TonyPrevite
Slobbering Jester
Royal Wombat
From: Glendale, AZ
Registered: 2002-04-14
Posts: 3606
Website

Re: Couloir and iWeb

wordwench wrote:

Boys, please- don't fight- we can all take barbecue together.

I think I've fixed the slide show issue, thanks to your pointers.

Play nice.

Don't worry it's all in fun, we all know each other pretty well wink

Offline

 

Board footer

Powered by PunBB 1.2.6
© Copyright 2002–2005 Rickard Andersson