Jump to content

Puzzle cache


Bandaid01

Recommended Posts

I'm trying to make a puzzle that matches two columns one from A to I the other from 1-9 On the template the two columns are correct, but when they are put on the page, they are jumbled together. Does anyone know how to accomplish this so that the columns stay separate and aligned on the final page" I tried entering each as a separate line using the space bar between the A entry and 1 entry and so on, but got the same results.

Link to comment

I'm trying to make a puzzle that matches two columns one from A to I the other from 1-9 On the template the two columns are correct, but when they are put on the page, they are jumbled together. Does anyone know how to accomplish this so that the columns stay separate and aligned on the final page" I tried entering each as a separate line using the space bar between the A entry and 1 entry and so on, but got the same results.

 

The excellent html resource "Follow the Arrow", has a section about tables & columns, etc, under "More Advanced HTML":

 

http://www.follow-the-arrow.co.uk/resources/htmlcodes.html

 

 

 

B.

Link to comment

I'm trying to make a puzzle that matches two columns one from A to I the other from 1-9 On the template the two columns are correct, but when they are put on the page, they are jumbled together. Does anyone know how to accomplish this so that the columns stay separate and aligned on the final page" I tried entering each as a separate line using the space bar between the A entry and 1 entry and so on, but got the same results.

There are probably other techy-computer ways to do that and I am not too computer-techy; what I would do is create the columns in a document and save it as a picture(jpg file), then put the picture in your description.

Link to comment

A table is your best bet. Make sure you check the HTML is used box.

 

<table border="0" width="400" cellpadding="0" cellspacing="0">
<tr><td>A</td><td>1</td></tr>
<tr><td>B</td><td>2</td></tr>
<tr><td>C</td><td>3</td></tr>
<tr><td>D</td><td>4</td></tr>
<tr><td>E</td><td>5</td></tr>
<tr><td>F</td><td>6</td></tr>
<tr><td>G</td><td>7</td></tr>
<tr><td>H</td><td>8</td></tr>
<tr><td>I</td><td>9</td></tr>
</table>

Link to comment

A table is your best bet. Make sure you check the HTML is used box.

 

<table border="0" width="400" cellpadding="0" cellspacing="0">
<tr><td>A</td><td>1</td></tr>
<tr><td>B</td><td>2</td></tr>
<tr><td>C</td><td>3</td></tr>
<tr><td>D</td><td>4</td></tr>
<tr><td>E</td><td>5</td></tr>
<tr><td>F</td><td>6</td></tr>
<tr><td>G</td><td>7</td></tr>
<tr><td>H</td><td>8</td></tr>
<tr><td>I</td><td>9</td></tr>
</table>

Link to comment

ok, thank you It looks like I have a lot of learning to do if I am going to learn html code. For the time being I will submit it as a list since that publishes ok, just doesn't look as professional.

 

I did the HTML for you. Just add your words after the ABC... and 123...

Link to comment

ok, thank you It looks like I have a lot of learning to do if I am going to learn html code. For the time being I will submit it as a list since that publishes ok, just doesn't look as professional.

 

I did the HTML for you. Just add your words after the ABC... and 123...

 

Thank you very much I have copied the code and saved it to work on.

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...