Difference between revisions of "HTML"

From GeoWiki
Jump to: navigation, search
(Cache Description with Background Image)
(Added fix for HTML in forum posts.)
 
(7 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 
<H2>Listing and Logging using HTML</H2>
 
<H2>Listing and Logging using HTML</H2>
Geocaching Australia Cache Listings and Logs use HTML (Hypertext Markup Language), the same stuff webpages are made of.  To get your post to display properly, with line breaks, you will need to know one or two markup codes:<P>
+
[[Geocaching Australia]] Cache [[Listing a cache|Listings]] and [[Logging a cache|Logs]] use [[HTML]] (Hypertext Markup Language), the same stuff webpages are made of.  To get your post to display properly, with line breaks, you will need to know one or two markup codes:<P>
 
<B><nowiki><br></nowiki></B> will insert a line break.  Like pressing "Enter" to go to a new line.<BR>
 
<B><nowiki><br></nowiki></B> will insert a line break.  Like pressing "Enter" to go to a new line.<BR>
 
<B><nowiki><p></nowiki></B> will start a new paragraph.  Like pressing "Enter" twice!<BR>
 
<B><nowiki><p></nowiki></B> will start a new paragraph.  Like pressing "Enter" twice!<BR>
Line 6: Line 6:
 
Now things get a little bit tricker:<BR>
 
Now things get a little bit tricker:<BR>
 
<B><nowiki><img src=http://yourimagelink></nowiki></B> will insert a picture.  Copy and paste the code into your log, then copy the link to your image and paste it over the "<nowiki>http://yourimagelink</nowiki>" part.  Don't use an image bigger than 640x480, it's too wide and messes up the screen!<BR>
 
<B><nowiki><img src=http://yourimagelink></nowiki></B> will insert a picture.  Copy and paste the code into your log, then copy the link to your image and paste it over the "<nowiki>http://yourimagelink</nowiki>" part.  Don't use an image bigger than 640x480, it's too wide and messes up the screen!<BR>
 +
<BR>
 +
You can chose how you want the image and text to display by using<BR>
 +
<B><nowiki><img src="http://yourimagelink" align="left"></nowiki></B> (or <B>"right"</B>)<BR>
 +
This will cause your text to "wrap" around your image.  To have the text display normally again, use<BR>
 +
<B><nowiki><br clear="left"></nowiki></B> (or <B>"right"</B>)<BR>
 +
<BR>
 +
To make a clickable image:<BR>
 +
<B><nowiki><a href="http://yourweblink"> <img src="http://yourimagelink"> </a></nowiki></B><BR>
 +
<BR>
 +
To make a link display different text:<BR>
 +
<B><nowiki><a href="http://yourweblink">Your Text Here</a></nowiki></B><BR>
 +
<BR>
 +
To make a link display different text and open in a new window (or tab):<BR>
 +
<B><nowiki><a href="http://yourweblink" target="_blank">Your Text Here</a></nowiki></B><BR>
 
<BR>
 
<BR>
 
You can change the format of your text by using:<BR>
 
You can change the format of your text by using:<BR>
Line 43: Line 57:
 
<BR>
 
<BR>
 
If you use a fancy font someone doesn't have installed on their computer, it will display using their default font.
 
If you use a fancy font someone doesn't have installed on their computer, it will display using their default font.
 
<H2>How to put [[ROT 13]] Hints into your Cache Listing:</H2>
 
<br>Simply go to the edit cache page and add the hint down the bottom and press Submit
 
<br>Users can decode this hint from thr Caches page by clicking on 'Decrypt'
 
<br>
 
  
 
== Cache Description with Background Image ==
 
== Cache Description with Background Image ==
Line 73: Line 82:
 
<nowiki></tr></nowiki><BR>
 
<nowiki></tr></nowiki><BR>
 
<nowiki></table></nowiki><BR>
 
<nowiki></table></nowiki><BR>
<BR>
 
  
<h2>Development Note:</h2><br>
+
<H2>Additional notes for geocaching.com listings</H2>
Development is currently underway with regard to hints on cache pages.<br>See
+
The best place to host your photo is on the listing itself. That way you know it'll remain available for the life of the cache, and will survive changes of ISP and the like.
[[Geocaching_Australia_Development_List]] for details.
+
 
 +
So, upload the image, then look at the listing to see the link to it below your text. (You might have to refresh the page a couple of times, it can take a few moments to appear.)
 +
 
 +
Copy that link. In most browsers it's something like (right click), copy link location. You'll figure it out!
 +
 
 +
Now, edit the listing and make sure "The descriptions below are in HTML" is ticked.<BR>
 +
Use the details above for adding line and paragraph breaks and for inserting your image(s).
 +
 
 +
Don't use the instructions for background images, though!  There's a box in the edit page for you to paste the URL of your background image; use that instead.
  
<br>
+
<H2>Why doesn't my post display properly?</H2>
<h2>Until then ...?</h2><br>
+
The default profile setting on the Geocaching Australia Forum is for HTML to be ON.  This means when you're typing your first post and press the "Enter" key to start a new line or paragraph, the new lines get ignored when you post.  This default setting is not able to be changed but you can fix it yourself:<br>
Here is some code that could potentially be added to your cache page listing to 'kludgily' add decryptable hints but it don't work too well.<br>
+
Go to your profile (link at top right of forum pages), and set "Always allow HTML" to "No"<br>
<br>Damn.
+
You can also fix your runon post with no paragraphs by clicking the "Edit" button and ticking the "Disable HTML in this post" box.
<br>Do not use ... just yet ...
 
<BR>
 
<BR>
 
<nowiki><script language="JavaScript"></nowiki><BR>
 
<nowiki>function rot()</nowiki><BR>
 
<nowiki> {</nowiki><BR>
 
<nowiki> tLength=hint.length;thint="";</nowiki><BR>
 
<nowiki> document.hintF.hOutput.value="";</nowiki><BR>
 
<nowiki> for (i=0;i<tLength;i++)</nowiki><BR>
 
<nowiki> { </nowiki><BR>
 
<nowiki> oChar=hint.charAt(i);</nowiki><BR>
 
<nowiki> iCode=hint.charCodeAt(i);</nowiki><BR>
 
<nowiki> if ((iCode>64)&&(iCode<92))</nowiki><BR>
 
<nowiki> oChar=String.fromCharCode((((iCode-65)+13)%26)+65);</nowiki><BR>
 
<nowiki> if ((iCode>96)&&(iCode<123))</nowiki><BR>
 
<nowiki> oChar=String.fromCharCode((((iCode-97)+13)%26)+97);</nowiki><BR>
 
<nowiki> thint+=oChar;</nowiki><BR>
 
<nowiki> }</nowiki><BR>
 
<nowiki> hint=thint;</nowiki><BR>
 
<nowiki> document.hintF.hOutput.value=hint;</nowiki><BR>
 
<nowiki> }</nowiki><BR>
 
<nowiki></script></nowiki><BR>
 
<nowiki><form action="" name="hintF"></nowiki><BR>
 
<nowiki> <textarea name="hOutput" cols="72" rows="2" wrap="physical" readonly></textarea></nowiki><BR>
 
<nowiki> <input type="button" onClick="rot();" value="toggle hint"><p></nowiki><BR>
 
<nowiki></form></nowiki><BR>
 
<nowiki><script language="Javascript"></nowiki><BR>
 
<nowiki>    hint="Type your hint here, keeping the double quotes in tact."</nowiki><BR>
 
<nowiki>    rot();</nowiki><BR>
 
<nowiki></script></nowiki><BR>
 
<br>
 
Hope that helps!
 

Latest revision as of 17:59, 26 June 2008

Listing and Logging using HTML

Geocaching Australia Cache Listings and Logs use HTML (Hypertext Markup Language), the same stuff webpages are made of. To get your post to display properly, with line breaks, you will need to know one or two markup codes:

<br> will insert a line break. Like pressing "Enter" to go to a new line.
<p> will start a new paragraph. Like pressing "Enter" twice!

Now things get a little bit tricker:
<img src=http://yourimagelink> will insert a picture. Copy and paste the code into your log, then copy the link to your image and paste it over the "http://yourimagelink" part. Don't use an image bigger than 640x480, it's too wide and messes up the screen!

You can chose how you want the image and text to display by using
<img src="http://yourimagelink" align="left"> (or "right")
This will cause your text to "wrap" around your image. To have the text display normally again, use
<br clear="left"> (or "right")

To make a clickable image:
<a href="http://yourweblink"> <img src="http://yourimagelink"> </a>

To make a link display different text:
<a href="http://yourweblink">Your Text Here</a>

To make a link display different text and open in a new window (or tab):
<a href="http://yourweblink" target="_blank">Your Text Here</a>

You can change the format of your text by using:
<b>bold</b> and
<i>italic</i> tags.

Change the size, font and "color".
<font size="2" face="Verdana" color=red>
Your text here.
</font>
There's a handy practice page here but you'll need to add the color attribute yourself. Chose from:
aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, and yellow.
And white if you want to mess around with changing your background colors.
For other colors, you'll need the colors HEX value, here's a list.
The safe fonts (ie ones most people are likely to have) are:
arial, arial black, comic sans ms, courier, courier new, georgia, helvetica, impact, palatino, times new roman, trebuchet ms, verdana
If you use a fancy font someone doesn't have installed on their computer, it will display using their default font.

Cache Description with Background Image

Backgroundtocachetext.small.jpg


Copy and paste the code, then change "http://BACKGROUND IMAGE URL HERE" to the link for your image (keep the "quotes" around the link), and replace "PARAGRAPH" with the text of your cache listing.


<table border="0" cellpadding="50" cellspacing="0" width="90%"
background="http://BACKGROUND IMAGE URL HERE">
<tr>
<td width="100%">
<table border="0" cellpadding="5" cellspacing="0" width="100%"
bgcolor="#FFFFFF">
<tr>
<td width="100%"><font face="Verdana" size="2">PARAGRAPH</font>
<p><font face="Verdana" size="2">PARAGRAPH</font></p>
<p><font face="Verdana" size="2">PARAGRAPH</font></p>
<p><font face="Verdana" size="2">PARAGRAPH</font></p>
<p><font face="Verdana" size="2">PARAGRAPH</font></p>
<p><font face="Verdana" size="2">PARAGRAPH</font></td>
</tr>
</table>
</td>
</tr>
</table>

Additional notes for geocaching.com listings

The best place to host your photo is on the listing itself. That way you know it'll remain available for the life of the cache, and will survive changes of ISP and the like.

So, upload the image, then look at the listing to see the link to it below your text. (You might have to refresh the page a couple of times, it can take a few moments to appear.)

Copy that link. In most browsers it's something like (right click), copy link location. You'll figure it out!

Now, edit the listing and make sure "The descriptions below are in HTML" is ticked.
Use the details above for adding line and paragraph breaks and for inserting your image(s).

Don't use the instructions for background images, though! There's a box in the edit page for you to paste the URL of your background image; use that instead.

Why doesn't my post display properly?

The default profile setting on the Geocaching Australia Forum is for HTML to be ON. This means when you're typing your first post and press the "Enter" key to start a new line or paragraph, the new lines get ignored when you post. This default setting is not able to be changed but you can fix it yourself:
Go to your profile (link at top right of forum pages), and set "Always allow HTML" to "No"

You can also fix your runon post with no paragraphs by clicking the "Edit" button and ticking the "Disable HTML in this post" box.