• Love God, and love one another!

    Share your heart for Christ and others in Godly Love

    https://christianforums.net/forums/god_love/

  • Want to discuss private matters, or make a few friends?

    Ask for membership to the Men's or Lady's Locker Rooms

    For access, please contact a member of staff and they can add you in!

  • Wake up and smell the coffee!

    Join us for a little humor in Joy of the Lord

    https://christianforums.net/forums/humor_and_jokes/

  • Need prayer and encouragement?

    Come share your heart's concerns in the Prayer Forum

    https://christianforums.net/forums/prayer/

  • Desire to be a vessel of honor unto the Lord Jesus Christ?

    Join Hidden in Him and For His Glory for discussions on how

    https://christianforums.net/threads/become-a-vessel-of-honor-part-2.112306/

  • Have questions about the Christian faith?

    Come ask us what's on your mind in Questions and Answers

    https://christianforums.net/forums/questions-and-answers/

  • CFN has a new look and a new theme

    "I bore you on eagle's wings, and brought you to Myself" (Exodus 19:4)

    More new themes coming in the future!

  • Read the Gospel of our Lord Jesus Christ?

    Read through this brief blog, and receive eternal salvation as the free gift of God

    /blog/the-gospel

  • Focus on the Family

    Strengthening families through biblical principles.

    Focus on the Family addresses the use of biblical principles in parenting and marriage to strengthen the family.

Tiling Left Column Only ??

vja4Him

Member
Joined
Oct 3, 2005
Messages
404
Reaction score
1
I'm not sure exactly how to describe what I want to do ..... Years ago somebody showed me how to do this, but I have long since forgotten how.

I want to create a template that I can use for web pages, taking an image and duplicating that image (small) in a narrow column, on the left side of the page, then start typing words to the right of that tiled column, so the words will not be inside of the column.

If you can understand what I want to do, and know how, please explain to me how to create that template. Also, I'd like to know how to create a template with a tiled image at the top of each web page.

I'd also like to know how to create active buttons, placed inside of the tiled images on the left and at the top. I'm using Nvu on my iBook G4. Right now, can't afford to buy any software, so I'm stuck with Nvu.

Thanks for any comments and help.

-- vja4Him
+++++++++++++
 
I want to create a template that I can use for web pages, taking an image and duplicating that image (small) in a narrow column, on the left side of the page, then start typing words to the right of that tiled column, so the words will not be inside of the column.



This may be nothing like what you are looking for, but, it gives us something to start with.

I grabbed your avatar for an image to tile in a column.

See http://bruwmacworldcreations.real-estat ... mple1.html

The table structure would be:

<table width="80%" border="0" align="center">
<tr>
<td width="48" background="cross10.gif"></td>
<td width="753" valign="top">


Text</p>


Text</p>


More text</p>


</p>


</p>


Still more text</p>


</p>
</td>
</tr>
</table>

Note that I set the column width to match the width of the image.

background="cross10.gif" creates the column background image

The tiling is automatic.

hth
 
Also, I'd like to know how to create a template with a tiled image at the top of each web page.

This example adds an image tiled across the top of the page:

http://bruwmacworldcreations.real-estat ... mple2.html


<table width="80%" border="0" align="center">
<tr background="knight.gif">
<td colspan="2" height="59"></td>
</tr>
<tr>
<td width="48"></td>
<td width="753" valign="top"></td>
</tr>
<tr>
<td width="48" background="cross10.gif"></td>
<td width="753" valign="top">


Text</p>


Text</p>


More text</p>


</p>


</p>


Still more text</p>


</p>
</td>
</tr>
</table>
 
I'd also like to know how to create active buttons, placed inside of the tiled images on the left and at the top.


hmmm...sounds like a job for css, if you want the tiled images to act independently as navigation buttons.

Or you could create an image map, using the same image over and over for a tiled effect (not sure why you would want to do that).

Here is an example of images (not tiled though) used as nav buttons:

http://big.real-estate-investors-resource.com/
 
Back
Top