365. CalGal - 9/29/1999 2:59:09 AM Pelle,
Sure.
< table align="left" > < tr > < td >< img src="http://www.artchive.com/artchive/D/david_g/flight_to_egypt.jpg" > < /td > < /tr > < /table > and then you go on with
your text.
and then you go on with your text, and btw, this is a simply lovely painting.
what happens with a paragraph?
and then you go on with your text, and btw, this is a simply lovely painting. How does it work to the right?
366. PsychProf - 9/29/1999 3:15:45 AM Cal...I pasted your command into dust, and it didn't work...what am I doing incorrectly? 367. CalGal - 9/29/1999 3:55:44 AM Prof--did you take out the spaces? I put the spaces before and after the brackets so that it isn't processed as HTML.
Also, I got carried away--the example tags don't include the second image, which is valign=right.
I am tied up at work and wasn't clear. Sorry about that.
368. Dusty - 9/29/1999 4:07:45 AM test1
< FONT SIZE="+1" COLOR="#7FFFD4" >test2< /FONT >
< FONT SIZE="+1" COLOR="#7FFFD4">test3< /FONT >
369. Dusty - 9/29/1999 4:15:44 AM HINT
Just for general knowledge—if you want to explain to someone how to code some HTML, you cannot simply show the information literallly, or it will be "processed". There are two alternatives:
- Enter the code exactly, but add a space after the first angle bracket. Some also add a space before the closing bracket, but my test above shows it isn't necessary
- You can insert a special character to print angle brackets, that will not be processed as if they are angle brackets. & lt (without the space) will display as the angel bracket that, guess what, looks like the less than symbol, and & gt (again without the space) will look like the greater than symbol.
In either case, it will not work to copy-and-paste only. If the first alternative is used, then copy-and-paste and remove the blanks. If the second is used, it will be more work to make the change.
370. dusty - 9/29/1999 9:43:23 AM test
371. dusty - 9/29/1999 10:21:37 AM test 2
372. dusty - 9/29/1999 10:25:26 AM Of course, I figure out how to do this, then realize it is similar to what PP's been doing for some time. 373. dusty - 9/29/1999 10:30:52 AM In another thread, pellenilsson asked how to display a large picture one that would mess up the margin. One solution, discussed above, is to resize the picture so that it fits. But what if that isn't sufficient? What if it would be too cramped if stuffed within the margins? The good news is that the answer is simple.
Create a small thumbnail with a link to the actual picture. I did it in post #371, and below I will show the commands (with the extra space after the angle bracket show it will display rather than execute.)
test 2
< A HREF="http://farnsworthmuseum.org/acrown.jpg">
< IMG HEIGHT=50 WIDTH=50 SRC="http://farnsworthmuseum.org/acrown.jpg">< /A>
374. dusty - 9/29/1999 10:34:42 AM test with pelle's large image from before
375. pellenilsson - 9/29/1999 6:39:20 PM This is a combination of CalGal's and dusty's tricks. If you click on the thumbnail you will be taken to the full picture which is Lot and his daughter (yes, depraved stuff) by Altdorfer, 1537.376. pellenilsson - 9/29/1999 6:42:28 PM It didn't work at all. Have to reconsider. 377. pellenilsson - 9/29/1999 6:45:08 PM a href="http://www.artchive.com/artchive/A/altdorfer/lot.jpg"> Now I have taken away the table tags.
378. pellenilsson - 9/29/1999 6:48:02 PM
Now? 379. pellenilsson - 9/29/1999 6:56:39 PM Putting back the table tags.
380. pellenilsson - 9/29/1999 7:10:33 PM Last attempt.
381. pellenilsson - 9/29/1999 7:16:37 PM At last. Here is the syntax then for a clickable picture with text wrap. As usual remove the space after all the < .
< table align="left">< tr>< td>< a href="http://www.artchive.com/artchive/A/altdorfer/lot.jpg">< img src="http://www.artchive.com/artchive/A/altdorfer/lot.jpg" width=100>< /td>< /tr>< /table>< /a>
382. pellenilsson - 9/29/1999 7:19:15 PM Sorry, this is the generic:
< table align="left">< tr>< td>< a href="ImageURL>< img src="ImageURL" width=100>< /td>< /tr>< /table>< /a> 383. pellenilsson - 9/29/1999 8:15:41 PM Now that I have a web site, I should get a page builder. The one that Yahoo provides seems rather useless and slow. I can get hold of Frontpage at the office. Any other suggestions? 384. Dusty - 9/29/1999 9:49:50 PM Pelle, thanks. We're making progress.
Minor nits: there needs be a cloing quote in the anchor tag, and while I think the order doesn't matter, it is slightly cleaner to close the anchor tag before closing the data element, the row, and the table, as follows:
< table align="left">< tr>< td>< a href="ImageURL">< img src="ImageURL" width=100>< /a>< /td>< /tr>< /table>
|