I am using Lightbox for my images and would like to know how to enter a description with multiple lines. I have some of my code as:
<img src="featured.jpg" border="1" alt="" /></a> <a href="AY40-L.jpg" rel="lightbox" title="Black Acrylic Award <br /> Size - 5 1/2 in. x 6 in. x 3/4 in.<br /> Product #: AY40-L <br /> $79.00">
However when I run the validation I get warnings like this:
Line 339, Column 363: character "<" is the first character of a delimiter but occurred as data.…lightbox" title="Black Acrylic Award <br /> Size - 5 1/2 in. x 6 in. x 3/4 in This message may appear in several cases: - You tried to include the "<" character in your page: you should escape it as "<"
- You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&", which is always safe.
- Another possibility is that you forgot to close quotes in a previous tag.
How can I make the text separate lines?
|