HTML Help
![]()
The new Boneyard allows html within posts, so many people are trying to learn how to use it. This page points you to some resources.
![]()
Quick Help
Husky Nan put together a help page with many of the common html commands, specifically intended for Boneyarders:![]()
Editor
My typing is atrocious. I'm old enough that when I was going to school, typing class for was the girls. A mistyped word in a post merely looks sloppy, a mistyped html command probably won't execute.![]()
Advice sites
There are literally reveal thousands of sites with html help. I'll list three that have been useful to me. I suggest the first two should be viewed in order. I went to the first one for CSS help, but I also looked at the HTML pages and they were very good.![]()
Thumbnails
More than one person asked me specifically about creating thumbnails. You can figure it out from the sites listed above, but it may not be obvious (partly because it is simpler than it sounds), so I'll include the instructions here:One question is how to create the thumbnail image itself. Graphics editors, such as Photoshop and Paint Shop Pro can do this easily, but it can even be done within Paint, automatically included in most PC's. Load the full size image into Paint, then Click on "image", then "stretch/Skew" and enter values. I'm using 33% for each dimension, which produces an image 1/9 the area of the original, with a lot smaller load time.
The other question is how to write the html line to display the thumbnail image with a link to the larger image. Ironically, it is not a special form of html, it is the standard link format, except that the place where you normally put the text to show up is simply replaced with the url of (the thumbnail) image.
Starting with the html for the classic link:
<a href="www.somewhere.com">Viewable text.</a>The above would display "Viewable text ". Clicking on it would bring you to the site "www.somewhere.com".
Instead of putting text between the ">" and "<" symbols, replace it with an image:
<a href="Fullsizedimage.gif"><img src="thumbnailimage.gif" border="0"></a>
Note that this is really the same format, except now, instead of showing a scrap of text, it shows a graphic. Clicking on the graphic is the same as clicking on a link, it invokes whatever is after the "href=". It could be a web site. In other words, you can use pictures as links to other pages. Or it can be a picture. If it is the url for the full size picture, clicking on the small picture makes the large one appear, and hitting back, brings you back to where you came from, viewing the smaller image.
(Obviously, you need full path names, not just the name of the images.)
![]()
This page last updated on 3 Dec 02.