template prob

M

Mike

From sone elements, i am making my background template.
It has a top, middle and bottom.
To make it bigger in size, I just have to add more middles.
So this way I construct a complete figure, lets say a square. Now I want to
add elements on that square/background.

I made this square in one table. I tried it to do it in one table per image,
but both wont work.

To make it more clear: I just want to fill in that square with the usual
stuff: navigation, text (no prob) and images. But each time I try, all
shifts out of line or with spaces etc etc.

Anybody ideas?

tnx in andvance
Mike
 
C

Chris Leeds, MVP-FrontPage

sure, no matter what size you set a table cell to, it'll get "pushed out" by
graphics (the ultimate "block" element). so you'll have to either make the
cell bigger or make the graphics smaller.

If you could post a URL you can get a precise answer.

HTH

--
Chris Leeds,
Microsoft MVP-FrontPage

Make More Money with Less Work
Let Your Clients Control Their Content With Just A Browser!
http://contentseed.com/
 
M

Mike

Here is the url: http://www.carolamike.demon.nl/
There are 3 different images here. The center images are a couple of them. I
tried to do it with one and resize it, but even than i cannot add a single
thing to it.

I thought it would be possible to make a cel anywhere you wanted withing a
table, seems not.
I hope you can help me out here...
 
C

Chris Leeds, MVP-FrontPage

the code below will give you the effect you want (if I understood you
correctly):

<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nieuwe pagina 1</title>
</head>

<body>

<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse:
collapse" bordercolor="#111111" width="800" height="100%">
<tr>
<td width="100%" align="center" valign="top" height="84">
<p style="margin-top: 0; margin-bottom: 0">
<img border="0"
src="http://www.carolamike.demon.nl/images/obj_top.gif" width="800"
height="84"></p>
</td>
</tr>
<tr>
<td width="100%" align="center" valign="top" height="100%"
background="http://www.carolamike.demon.nl/images/bg_main.gif">
&nbsp;<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</td>
</tr>
<tr>
<td width="100%" align="center" valign="top" height="84">
<img border="0"
src="http://www.carolamike.demon.nl/images/obj_bottom.gif" width="800"
height="89"></td>
</tr>
</table>
</center>
</div>

</body>

</html>

--
Chris Leeds,
Microsoft MVP-FrontPage

Make More Money with Less Work
Let Your Clients Control Their Content With Just A Browser!
http://contentseed.com/
--
 
Top