Inline cell stretch problem

G

Guest

Hi guys
I have designed a website in FP 2003. In the left column of the site, I have
got two cells, in the first cell, there is a small picture and in the other
cell, there is a vertical menu bar. I have also put an inline cell in the
middle of my page for contents(text).

The problem is when my content page becomes bigger, the cell to the left of
it ie. the cell having a picture and menu bar also stretches . I want these
to be fixed and not stretch when my inline cell stretches or becomes bigger..
I have aligned the cell in the middle. It does not enen touch the left
column..

Please help

Regards
Mita
 
T

Trevor L.

mita said:
Hi guys
I have designed a website in FP 2003. In the left column of the site,
I have got two cells, in the first cell, there is a small picture and
in the other cell, there is a vertical menu bar. I have also put an
inline cell in the middle of my page for contents(text).

The problem is when my content page becomes bigger, the cell to the
left of it ie. the cell having a picture and menu bar also stretches
. I want these to be fixed and not stretch when my inline cell
stretches or becomes bigger.. I have aligned the cell in the middle.
It does not enen touch the left column..

Please help

Regards
Mita

Hmm,
How many cells and how many tables?

Is it one table with 3 columns ?
column1: small picture
column2: contents(text)
column3: menu bar

It is not quite clear as you mention 2 cells but 3 lots of contents

Anyway if there are all in the one table this can't be avoided. If they are
separate tables, then one won't affect the other. But if you define one
table after another they will stack vertically, so you need to put them in
separate divisions.

This code works, but it may be a bit of overkill. The second table can be as
long as you like - it won't affect the first.
<html>
<head>
<style type="text/css">
div#layer1 , div#layer2
{ height: 100%;}
div#layer1 {
text-align: left;
float: left;
width: 25%;
}
div#layer2 {
position: absolute ;
left: 30%;
}
</style>
</head>
<body>

<div id="layer1" >
<table>
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>
</div>

<div id="layer2" >
<table>
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>
</div>

</body>
</html>
 
G

Guest

Hi Trevor
There is only 1 table and a picure and menu bar are in the same column(but
in different rows) .. So shall i make another table for content within my
main table??

Thanks
Mita

Trevor L. said:
mita said:
Hi guys
I have designed a website in FP 2003. In the left column of the site,
I have got two cells, in the first cell, there is a small picture and
in the other cell, there is a vertical menu bar. I have also put an
inline cell in the middle of my page for contents(text).

The problem is when my content page becomes bigger, the cell to the
left of it ie. the cell having a picture and menu bar also stretches
. I want these to be fixed and not stretch when my inline cell
stretches or becomes bigger.. I have aligned the cell in the middle.
It does not enen touch the left column..

Please help

Regards
Mita

Hmm,
How many cells and how many tables?

Is it one table with 3 columns ?
column1: small picture
column2: contents(text)
column3: menu bar

It is not quite clear as you mention 2 cells but 3 lots of contents

Anyway if there are all in the one table this can't be avoided. If they are
separate tables, then one won't affect the other. But if you define one
table after another they will stack vertically, so you need to put them in
separate divisions.

This code works, but it may be a bit of overkill. The second table can be as
long as you like - it won't affect the first.
<html>
<head>
<style type="text/css">
div#layer1 , div#layer2
{ height: 100%;}
div#layer1 {
text-align: left;
float: left;
width: 25%;
}
div#layer2 {
position: absolute ;
left: 30%;
}
</style>
</head>
<body>

<div id="layer1" >
<table>
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>
</div>

<div id="layer2" >
<table>
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>
</div>

</body>
</html>




--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
M

Murray

Yes. They will stack one on top of the other nicely.

--
Murray
--------------
MVP FrontPage


mita said:
Hi Trevor
There is only 1 table and a picure and menu bar are in the same column(but
in different rows) .. So shall i make another table for content within my
main table??

Thanks
Mita

Trevor L. said:
mita said:
Hi guys
I have designed a website in FP 2003. In the left column of the site,
I have got two cells, in the first cell, there is a small picture and
in the other cell, there is a vertical menu bar. I have also put an
inline cell in the middle of my page for contents(text).

The problem is when my content page becomes bigger, the cell to the
left of it ie. the cell having a picture and menu bar also stretches
. I want these to be fixed and not stretch when my inline cell
stretches or becomes bigger.. I have aligned the cell in the middle.
It does not enen touch the left column..

Please help

Regards
Mita

Hmm,
How many cells and how many tables?

Is it one table with 3 columns ?
column1: small picture
column2: contents(text)
column3: menu bar

It is not quite clear as you mention 2 cells but 3 lots of contents

Anyway if there are all in the one table this can't be avoided. If they
are
separate tables, then one won't affect the other. But if you define one
table after another they will stack vertically, so you need to put them
in
separate divisions.

This code works, but it may be a bit of overkill. The second table can be
as
long as you like - it won't affect the first.
<html>
<head>
<style type="text/css">
div#layer1 , div#layer2
{ height: 100%;}
div#layer1 {
text-align: left;
float: left;
width: 25%;
}
div#layer2 {
position: absolute ;
left: 30%;
}
</style>
</head>
<body>

<div id="layer1" >
<table>
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>
</div>

<div id="layer2" >
<table>
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>
</div>

</body>
</html>




--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
T

Trevor L.

Murray said:
Yes. They will stack one on top of the other nicely.

I was concerned that the OP might have wanted the two tables to be
side-by-side rather than vertically, hence my suggestion as to how to do
that with absolute positioning.

But I know that you are the guru on absolute positioning, so did I get it
right ??
 
M

Murray

I didn't see anything there to complain about! 8)

--
Murray
--------------
MVP FrontPage


Trevor L. said:
Murray said:
Yes. They will stack one on top of the other nicely.

I was concerned that the OP might have wanted the two tables to be
side-by-side rather than vertically, hence my suggestion as to how to do
that with absolute positioning.

But I know that you are the guru on absolute positioning, so did I get it
right ??

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
M

Murray

You could also do that without the divs, you know?

<html>
<head>
<style type="text/css">
table#left1 , table#left2
{ height: 100%;}
/* this isn't going to work very well to fill the page vertically with any
approach */
table#left1 {
text-align: left;
float: left;
width: 25%;
}
table#left2 {
float: left ;
margin-left: 5%;
}
</style>
</head>
<body>

<table id="left1">
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>

<table id="left2">
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>

</body>
</html>

(no positioning at all)

--
Murray
--------------
MVP FrontPage


Murray said:
I didn't see anything there to complain about! 8)

--
Murray
--------------
MVP FrontPage


Trevor L. said:
Murray said:
Yes. They will stack one on top of the other nicely.

I was concerned that the OP might have wanted the two tables to be
side-by-side rather than vertically, hence my suggestion as to how to do
that with absolute positioning.

But I know that you are the guru on absolute positioning, so did I get it
right ??

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
G

Guest

Thanks for your help guys!
I just tried the coding which u sent.My major concern is with the inner
table . I want to position it in the centre of my outer table.I tried
inserting the table inside my main table . I was not able to position it in
the middle. And when i tried to stretch the inner table, outer table also
started to stretch.
I want to fix the length of the inner table.

Pls help
Thanx











Murray said:
You could also do that without the divs, you know?

<html>
<head>
<style type="text/css">
table#left1 , table#left2
{ height: 100%;}
/* this isn't going to work very well to fill the page vertically with any
approach */
table#left1 {
text-align: left;
float: left;
width: 25%;
}
table#left2 {
float: left ;
margin-left: 5%;
}
</style>
</head>
<body>

<table id="left1">
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>

<table id="left2">
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>

</body>
</html>

(no positioning at all)

--
Murray
--------------
MVP FrontPage


Murray said:
I didn't see anything there to complain about! 8)

--
Murray
--------------
MVP FrontPage


Trevor L. said:
Murray wrote:
Yes. They will stack one on top of the other nicely.

I was concerned that the OP might have wanted the two tables to be
side-by-side rather than vertically, hence my suggestion as to how to do
that with absolute positioning.

But I know that you are the guru on absolute positioning, so did I get it
right ??

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
M

Murray

Why not show us your code?

--
Murray
--------------
MVP FrontPage


mita said:
Thanks for your help guys!
I just tried the coding which u sent.My major concern is with the inner
table . I want to position it in the centre of my outer table.I tried
inserting the table inside my main table . I was not able to position it
in
the middle. And when i tried to stretch the inner table, outer table also
started to stretch.
I want to fix the length of the inner table.

Pls help
Thanx











Murray said:
You could also do that without the divs, you know?

<html>
<head>
<style type="text/css">
table#left1 , table#left2
{ height: 100%;}
/* this isn't going to work very well to fill the page vertically with
any
approach */
table#left1 {
text-align: left;
float: left;
width: 25%;
}
table#left2 {
float: left ;
margin-left: 5%;
}
</style>
</head>
<body>

<table id="left1">
<tr>
<th>Column1:</th>
<th>Column2:</th>
<th>Column3:</th>
</tr>
<tr><!-- row1 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td>Blah blah</td>
</tr>
<tr><!-- row2 -->
<td>Blah blah</td>
<td>Blah blah</td>
<td></td>
</tr>
<tr><!-- row3 -->
<td>Blah blah</td>
<td></td>
<td></td>
</tr>
</table>

<table id="left2">
<tr>
<th>Another Column</th>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
<tr>
<td>Blah blah</td>
</tr>
</table>

</body>
</html>

(no positioning at all)

--
Murray
--------------
MVP FrontPage


Murray said:
I didn't see anything there to complain about! 8)

--
Murray
--------------
MVP FrontPage


Murray wrote:
Yes. They will stack one on top of the other nicely.

I was concerned that the OP might have wanted the two tables to be
side-by-side rather than vertically, hence my suggestion as to how to
do
that with absolute positioning.

But I know that you are the guru on absolute positioning, so did I get
it
right ??

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
G

Guest

Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
..shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman"> <!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f" filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136" adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black" stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0" brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f" lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black" stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000" lightlevel2="24000f"/>
<v:textpath style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134 _x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana ngÄ PÅari Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana ngÄ PÅari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana ngÄ PÅari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width: 120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120" height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')" style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')" style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')" style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')" style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')" style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')" style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="1" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<div style="position: absolute; top: 47px; left: 212px; width: 99px;
height: 78px; z-index: 1">
<span style="font-size: 12.0pt; font-family: Times New Roman"><!--[if gte
vml 1]><v:shape
id="_x0000_s1136" type="#_x0000_t75" alt=""
style='width:74.25pt;height:57.75pt'>
<v:imagedata src="index10_files/image003.png"
o:href="http://www.adventuretrainingnz.com/images/south-island.gif"
cropright="1242f" chromakey="black" gain="142470f" blacklevel="1966f"/>
</v:shape><![endif]--><![if !vml]><img border=0 width=99 height=77
src="index10_files/image004.gif"
v:shapes="_x0000_s1136"><![endif]></span></div>
<div align="center">
<table cellpadding="0" cellspacing="0" width="576" height="292">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" height="292" width="576"> <div align="center">
<table cellpadding="0" cellspacing="0" width="308" height="43">
<!-- MSCellFormattingTableID="5" -->
<tr>
<td height="43" width="308">
<!-- MSCellFormattingType="content" -->
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
<td height="17"></td>
</tr>
<tr>
<td></td>
<td height="10"></td>
</tr>
<tr>
<td valign="top" bgcolor="#89BDE4"><div
id="DMSMenu79_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y21lbnUxLmRtcw==">
<img id='TrackPath_m79' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu79_m79_scr.js">
</script>

<table id="m79mainSXMenu2" cellspacing="1" cellpadding="4" style=";width:">
<tr><td onmouseover="chgBg(m79,'m79tlm0',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm0',0,1)" id="m79tlm0"
onmousedown="f58('m79tlm0a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm0a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/whoWeAre.htm" >Who We
Are</a></td><td style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm1',3);exM(m79,'m79mn1','m79tlm1',event)"
onmouseout="chgBg(m79,'m79tlm1',0);coM(m79,'m79mn1')" id="m79tlm1"
onmousedown="f58('m79tlm1a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm1a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/structure.htm"
Structure</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td onmouseover="chgBg(m79,'m79tlm2',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm2',0,1)" id="m79tlm2"
onmousedown="f58('m79tlm2a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm2a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/workRequest.htm" >Work
Request</a></td><td style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm3',3);exM(m79,'m79mn2','m79tlm3',event)"
onmouseout="chgBg(m79,'m79tlm3',0);coM(m79,'m79mn2')" id="m79tlm3"
onmousedown="f58('m79tlm3a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm3a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/audit.htm" >Audit</a></td><td
style='text-align:right;width:8px'><img width="8" height="8"
src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm4',3);exM(m79,'m79mn3','m79tlm4',event)"
onmouseout="chgBg(m79,'m79tlm4',0);coM(m79,'m79mn3')" id="m79tlm4"
onmousedown="f58('m79tlm4a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm4a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/I&A.htm" >Information And
Analysis</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm5',3);exM(m79,'m79mn4','m79tlm5',event)"
onmouseout="chgBg(m79,'m79tlm5',0);coM(m79,'m79mn4')" id="m79tlm5"
onmousedown="f58('m79tlm5a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm5a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/mentalHealth.htm" >Mental
Health</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm6',3);exM(m79,'m79mn5','m79tlm6',event)"
onmouseout="chgBg(m79,'m79tlm6',0);coM(m79,'m79mn5')" id="m79tlm6"
onmousedown="f58('m79tlm6a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm6a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/PersonalHealthGen.htm" >Personal
Health</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr>
</table>
</div>
<p> </td>
<td height="337"></td>
</tr>
<tr>
<td width="124"></td>
<td width="847"></td>
<td height="1" width="2"></td>
</tr>
</table>

</body>

</html>
 
M

Murray

Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman"> <!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black" stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0" brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f" lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black" stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000" lightlevel2="24000f"/>
<v:textpath style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134 _x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width: 120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120" height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')" style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')" style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')" style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')" style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')" style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')" style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="1" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<div style="position: absolute; top: 47px; left: 212px; width: 99px;
height: 78px; z-index: 1">
<span style="font-size: 12.0pt; font-family: Times New Roman"><!--[if gte
vml 1]><v:shape
id="_x0000_s1136" type="#_x0000_t75" alt=""
style='width:74.25pt;height:57.75pt'>
<v:imagedata src="index10_files/image003.png"
o:href="http://www.adventuretrainingnz.com/images/south-island.gif"
cropright="1242f" chromakey="black" gain="142470f" blacklevel="1966f"/>
</v:shape><![endif]--><![if !vml]><img border=0 width=99 height=77
src="index10_files/image004.gif"
v:shapes="_x0000_s1136"><![endif]></span></div>
<div align="center">
<table cellpadding="0" cellspacing="0" width="576" height="292">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" height="292" width="576"> <div align="center">
<table cellpadding="0" cellspacing="0" width="308" height="43">
<!-- MSCellFormattingTableID="5" -->
<tr>
<td height="43" width="308">
<!-- MSCellFormattingType="content" -->
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
<td height="17"></td>
</tr>
<tr>
<td></td>
<td height="10"></td>
</tr>
<tr>
<td valign="top" bgcolor="#89BDE4"><div
id="DMSMenu79_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y21lbnUxLmRtcw==">
<img id='TrackPath_m79' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu79_m79_scr.js">
</script>

<table id="m79mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:">
<tr><td onmouseover="chgBg(m79,'m79tlm0',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm0',0,1)" id="m79tlm0"
onmousedown="f58('m79tlm0a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm0a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/whoWeAre.htm" >Who We
Are</a></td><td style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm1',3);exM(m79,'m79mn1','m79tlm1',event)"
onmouseout="chgBg(m79,'m79tlm1',0);coM(m79,'m79mn1')" id="m79tlm1"
onmousedown="f58('m79tlm1a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm1a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/structure.htm"
Structure</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td onmouseover="chgBg(m79,'m79tlm2',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm2',0,1)" id="m79tlm2"
onmousedown="f58('m79tlm2a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm2a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/workRequest.htm" >Work
Request</a></td><td
style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm3',3);exM(m79,'m79mn2','m79tlm3',event)"
onmouseout="chgBg(m79,'m79tlm3',0);coM(m79,'m79mn2')" id="m79tlm3"
onmousedown="f58('m79tlm3a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm3a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/audit.htm" >Audit</a></td><td
style='text-align:right;width:8px'><img width="8" height="8"
src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm4',3);exM(m79,'m79mn3','m79tlm4',event)"
onmouseout="chgBg(m79,'m79tlm4',0);coM(m79,'m79mn3')" id="m79tlm4"
onmousedown="f58('m79tlm4a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm4a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/I&A.htm" >Information And
Analysis</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm5',3);exM(m79,'m79mn4','m79tlm5',event)"
onmouseout="chgBg(m79,'m79tlm5',0);coM(m79,'m79mn4')" id="m79tlm5"
onmousedown="f58('m79tlm5a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm5a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/mentalHealth.htm" >Mental
Health</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm6',3);exM(m79,'m79mn5','m79tlm6',event)"
onmouseout="chgBg(m79,'m79tlm6',0);coM(m79,'m79mn5')" id="m79tlm6"
onmousedown="f58('m79tlm6a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm6a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/PersonalHealthGen.htm"
Health</a></td><td style='text-align:right;width:8px'><img width="8"
height="8" src="menu-files/menu79_m79ia.gif"
style="vertical-align:middle;border-style:none" alt=""
/></td></tr></table></td>
</tr>
</table>
</div>
<p> </td>
<td height="337"></td>
</tr>
<tr>
<td width="124"></td>
<td width="847"></td>
<td height="1" width="2"></td>
</tr>
</table>

</body>

</html>
 
G

Guest

Hi Murray

Since our company does not have a logo, i had to put the letter head in the
page and this letter head has already been designed in word art using drawing
box. It is basically a dwt page and the menu bars have been designed using
DHTML menu builder..

The inner table in the middle of the page is the content page. When I try to
add large data on this page, the left navigation menu bar(vertical) also
starts stretching..
So what do u suggest, If i dont include thw word art, what options do I have??

Please help

Thanks

Murray said:
Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman"> <!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black" stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0" brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f" lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black" stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000" lightlevel2="24000f"/>
<v:textpath style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134 _x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width: 120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120" height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')" style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')" style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')" style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')" style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')" style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')" style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="1" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<div style="position: absolute; top: 47px; left: 212px; width: 99px;
height: 78px; z-index: 1">
<span style="font-size: 12.0pt; font-family: Times New Roman"><!--[if gte
vml 1]><v:shape
id="_x0000_s1136" type="#_x0000_t75" alt=""
style='width:74.25pt;height:57.75pt'>
<v:imagedata src="index10_files/image003.png"
o:href="http://www.adventuretrainingnz.com/images/south-island.gif"
cropright="1242f" chromakey="black" gain="142470f" blacklevel="1966f"/>
</v:shape><![endif]--><![if !vml]><img border=0 width=99 height=77
src="index10_files/image004.gif"
v:shapes="_x0000_s1136"><![endif]></span></div>
<div align="center">
<table cellpadding="0" cellspacing="0" width="576" height="292">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" height="292" width="576"> <div align="center">
<table cellpadding="0" cellspacing="0" width="308" height="43">
<!-- MSCellFormattingTableID="5" -->
<tr>
<td height="43" width="308">
<!-- MSCellFormattingType="content" -->
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
<td height="17"></td>
</tr>
<tr>
<td></td>
<td height="10"></td>
</tr>
<tr>
<td valign="top" bgcolor="#89BDE4"><div
id="DMSMenu79_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y21lbnUxLmRtcw==">
<img id='TrackPath_m79' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu79_m79_scr.js">
</script>

<table id="m79mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:">
<tr><td onmouseover="chgBg(m79,'m79tlm0',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm0',0,1)" id="m79tlm0"
onmousedown="f58('m79tlm0a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm0a" class="m79CL0"
href="file:///F:/my documents/sissal3/pages/whoWeAre.htm" >Who We
Are</a></td><td style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm1',3);exM(m79,'m79mn1','m79tlm1',event)"
 
M

Murray

So what do u suggest, If i dont include thw word art, what options do I

Anything but Word Art. You realize that only IE browsers will render it?

I would open the browser and take a screen grab of the WordArt rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now all
browsers will see it.
and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many disadvantages to
all-javascript menus like this one produces.

But on to the original question -

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray

Since our company does not have a logo, i had to put the letter head in
the
page and this letter head has already been designed in word art using
drawing
box. It is basically a dwt page and the menu bars have been designed using
DHTML menu builder..

The inner table in the middle of the page is the content page. When I try
to
add large data on this page, the left navigation menu bar(vertical) also
starts stretching..
So what do u suggest, If i dont include thw word art, what options do I
have??

Please help

Thanks

Murray said:
Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0" brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000" lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width: 120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120" height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')"
style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')"
style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')"
style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')"
style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')"
style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')"
style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="1" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<div style="position: absolute; top: 47px; left: 212px; width: 99px;
height: 78px; z-index: 1">
<span style="font-size: 12.0pt; font-family: Times New Roman"><!--[if
gte
vml 1]><v:shape
id="_x0000_s1136" type="#_x0000_t75" alt=""
style='width:74.25pt;height:57.75pt'>
<v:imagedata src="index10_files/image003.png"
o:href="http://www.adventuretrainingnz.com/images/south-island.gif"
cropright="1242f" chromakey="black" gain="142470f"
blacklevel="1966f"/>
</v:shape><![endif]--><![if !vml]><img border=0 width=99 height=77
src="index10_files/image004.gif"
v:shapes="_x0000_s1136"><![endif]></span></div>
<div align="center">
<table cellpadding="0" cellspacing="0" width="576" height="292">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" height="292" width="576"> <div align="center">
<table cellpadding="0" cellspacing="0" width="308" height="43">
<!-- MSCellFormattingTableID="5" -->
<tr>
<td height="43" width="308">
<!-- MSCellFormattingType="content" -->
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
<td height="17"></td>
</tr>
<tr>
<td></td>
<td height="10"></td>
</tr>
<tr>
<td valign="top" bgcolor="#89BDE4"><div
id="DMSMenu79_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y21lbnUxLmRtcw==">
<img id='TrackPath_m79' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu79_m79_scr.js">
</script>

<table id="m79mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:">
<tr><td onmouseover="chgBg(m79,'m79tlm0',3);exM(m79,'none','',event)"
onmouseout="chgBg(m79,'m79tlm0',0,1)" id="m79tlm0"
onmousedown="f58('m79tlm0a')" style="background-color:#A0CAE9;" ><table
cellpadding='0' cellspacing='0' style='width:100%'><tr><td
style="text-align:center;" class='m79mit'><a id="m79tlm0a"
class="m79CL0"
href="file:///F:/my documents/sissal3/pages/whoWeAre.htm" >Who We
Are</a></td><td
style='text-align:right;width:8px'></td></tr></table></td>
</tr><tr><td
onmouseover="chgBg(m79,'m79tlm1',3);exM(m79,'m79mn1','m79tlm1',event)"
 
G

Guest

Thanks for the help
there is a cell inside the page in the middle.. if this cell strtches, the
left cell just on top of the navigation bar (vertical bar) which has got a
picture in it(you might not see the picture).

Murray said:
So what do u suggest, If i dont include thw word art, what options do I
have??

Anything but Word Art. You realize that only IE browsers will render it?

I would open the browser and take a screen grab of the WordArt rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now all
browsers will see it.
and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many disadvantages to
all-javascript menus like this one produces.

But on to the original question -

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray

Since our company does not have a logo, i had to put the letter head in
the
page and this letter head has already been designed in word art using
drawing
box. It is basically a dwt page and the menu bars have been designed using
DHTML menu builder..

The inner table in the middle of the page is the content page. When I try
to
add large data on this page, the left navigation menu bar(vertical) also
starts stretching..
So what do u suggest, If i dont include thw word art, what options do I
have??

Please help

Thanks

Murray said:
Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0" brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000" lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width: 120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120" height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1' height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')"
style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')"
style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')"
style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')"
style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')"
style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')"
style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
 
M

Murray

Is it possible to post a link to this page, so that I can see how the page
displays?

--
Murray
--------------
MVP FrontPage


mita said:
Thanks for the help
there is a cell inside the page in the middle.. if this cell strtches, the
left cell just on top of the navigation bar (vertical bar) which has got a
picture in it(you might not see the picture).

Murray said:
So what do u suggest, If i dont include thw word art, what options do I
have??

Anything but Word Art. You realize that only IE browsers will render it?

I would open the browser and take a screen grab of the WordArt rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now all
browsers will see it.
and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many disadvantages
to
all-javascript menus like this one produces.

But on to the original question -
Which table is expanding and what are you adding to it to make it
expand?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray

Since our company does not have a logo, i had to put the letter head in
the
page and this letter head has already been designed in word art using
drawing
box. It is basically a dwt page and the menu bars have been designed
using
DHTML menu builder..

The inner table in the middle of the page is the content page. When I
try
to
add large data on this page, the left navigation menu bar(vertical)
also
starts stretching..
So what do u suggest, If i dont include thw word art, what options do I
have??

Please help

Thanks

:

Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it
expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t"
o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0"
brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath
style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000"
lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga
Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width:
120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120"
height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1'
height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')"
style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')"
style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')"
style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
<td onmouseover="chgBg(m80,'m80tlm3',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm3',0,1)" id="m80tlm3"
onmousedown="f58('m80tlm3a')"
style="width:124px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm3a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/FAQs.htm" >FAQs</a></td>
<td onmouseover="chgBg(m80,'m80tlm4',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm4',0,1)" id="m80tlm4"
onmousedown="f58('m80tlm4a')"
style="width:167px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm4a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/ContactUs.htm" >Contact Us</a></td>
<td onmouseover="chgBg(m80,'m80tlm5',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm5',0,1)" id="m80tlm5"
onmousedown="f58('m80tlm5a')"
style="width:145px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm5a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/SiteMap.htm" >Site Map</a></td>

</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top" rowspan="3">
 
G

Guest

Hi Murray
My website has not been published. Its only on my local disk. How shall i
send the link to you??

Mita

Murray said:
Is it possible to post a link to this page, so that I can see how the page
displays?

--
Murray
--------------
MVP FrontPage


mita said:
Thanks for the help
there is a cell inside the page in the middle.. if this cell strtches, the
left cell just on top of the navigation bar (vertical bar) which has got a
picture in it(you might not see the picture).

Murray said:
So what do u suggest, If i dont include thw word art, what options do I
have??

Anything but Word Art. You realize that only IE browsers will render it?

I would open the browser and take a screen grab of the WordArt rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now all
browsers will see it.

and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many disadvantages
to
all-javascript menus like this one produces.

But on to the original question -

Which table is expanding and what are you adding to it to make it
expand?


--
Murray
--------------
MVP FrontPage


Hi Murray

Since our company does not have a logo, i had to put the letter head in
the
page and this letter head has already been designed in word art using
drawing
box. It is basically a dwt page and the menu bars have been designed
using
DHTML menu builder..

The inner table in the middle of the page is the content page. When I
try
to
add large data on this page, the left navigation menu bar(vertical)
also
starts stretching..
So what do u suggest, If i dont include thw word art, what options do I
have??

Please help

Thanks

:

Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it
expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t"
o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5" offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0"
brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath
style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000"
lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355 height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130 _x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f" strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga
Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365 height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width:
120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120"
height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1'
height='1'
style='display:none' alt='' />
<script type="text/javascript" src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')"
style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')"
style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')"
style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0" href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
 
T

Tom Willett

You can't, if it's on your local machine.
Post the code here for him to look at.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| Hi Murray
| My website has not been published. Its only on my local disk. How shall i
| send the link to you??
|
| Mita
|
| "Murray" wrote:
|
| > Is it possible to post a link to this page, so that I can see how the
page
| > displays?
| >
| > --
| > Murray
| > --------------
| > MVP FrontPage
| >
| >
| > | > > Thanks for the help
| > > there is a cell inside the page in the middle.. if this cell strtches,
the
| > > left cell just on top of the navigation bar (vertical bar) which has
got a
| > > picture in it(you might not see the picture).
| > >
| > > "Murray" wrote:
| > >
| > >> > So what do u suggest, If i dont include thw word art, what options
do I
| > >> > have??
| > >>
| > >> Anything but Word Art. You realize that only IE browsers will render
it?
| > >>
| > >> I would open the browser and take a screen grab of the WordArt
rendering.
| > >> Save it as a GIF or JPG image, crop it as needed, and use that. Now
all
| > >> browsers will see it.
| > >>
| > >> > and the menu bars have been designed using
| > >> > DHTML menu builder..
| > >>
| > >> I wouldn't touch that one either. There are just too many
disadvantages
| > >> to
| > >> all-javascript menus like this one produces.
| > >>
| > >> But on to the original question -
| > >>
| > >> >> Which table is expanding and what are you adding to it to make it
| > >> >> expand?
| > >> >>
| > >>
| > >> --
| > >> Murray
| > >> --------------
| > >> MVP FrontPage
| > >>
| > >>
| > >> | > >> > Hi Murray
| > >> >
| > >> > Since our company does not have a logo, i had to put the letter
head in
| > >> > the
| > >> > page and this letter head has already been designed in word art
using
| > >> > drawing
| > >> > box. It is basically a dwt page and the menu bars have been
designed
| > >> > using
| > >> > DHTML menu builder..
| > >> >
| > >> > The inner table in the middle of the page is the content page. When
I
| > >> > try
| > >> > to
| > >> > add large data on this page, the left navigation menu bar(vertical)
| > >> > also
| > >> > starts stretching..
| > >> > So what do u suggest, If i dont include thw word art, what options
do I
| > >> > have??
| > >> >
| > >> > Please help
| > >> >
| > >> > Thanks
| > >> >
| > >> > "Murray" wrote:
| > >> >
| > >> >> Ugh. So much word art/Office output? You know that Word Art's
not
| > >> >> cross-browser compatible? What did you use to create the page?
| > >> >>
| > >> >> Which table is expanding and what are you adding to it to make it
| > >> >> expand?
| > >> >>
| > >> >> You have quite a few broken links in there, no?
| > >> >>
| > >> >> --
| > >> >> Murray
| > >> >> --------------
| > >> >> MVP FrontPage
| > >> >>
| > >> >>
| > >> >> | > >> >> > Hi Murray.
| > >> >> > Here is the code for my website-
| > >> >> >
| > >> >> >
| > >> >> > <html xmlns:v="urn:schemas-microsoft-com:vml"
| > >> >> > xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
| > >> >> > xmlns="http://www.w3.org/TR/REC-html40">
| > >> >> >
| > >> >> > <head>
| > >> >> > <meta http-equiv="Content-Language" content="en-us">
| > >> >> > <meta http-equiv="Content-Type" content="text/html;
| > >> >> > charset=windows-1252">
| > >> >> > <link rel="File-List" href="index_files/filelist.xml">
| > >> >> >
| > >> >> > <!--[if !mso]>
| > >> >> > <style>
| > >> >> > v\:* { behavior: url(#default#VML) }
| > >> >> > o\:* { behavior: url(#default#VML) }
| > >> >> > .shape { behavior: url(#default#VML) }
| > >> >> > </style>
| > >> >> > <![endif]-->
| > >> >> > <!-- #BeginEditable "doctitle" -->
| > >> >> > <!-- #EndEditable -->
| > >> >> > <!--[if gte mso 9]>
| > >> >> > <xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
| > >> >> > </xml><![endif]-->
| > >> >> > </head>
| > >> >> >
| > >> >> > <body>
| > >> >> >
| > >> >> > <table cellpadding="0" cellspacing="0" width="973"
height="100%">
| > >> >> > <!-- MSTableType="layout" -->
| > >> >> > <tr>
| > >> >> > <td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
| > >> >> > <p align="center">
| > >> >> > <span style="font-size: 12.0pt; font-family: Times New Roman">
| > >> >> > <!--[if
| > >> >> > gte vml 1]><v:group id="_x0000_s1130"
| > >> >> > editas="canvas" alt="" style='width:266.25pt;height:66pt;
| > >> >> >
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
| > >> >> > coordorigin="3927,3307" coordsize="4633,1174">
| > >> >> > <o:lock v:ext="edit" aspectratio="t"/>
| > >> >> > <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
| > >> >> > o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
| > >> >> > stroked="f">
| > >> >> > <v:stroke joinstyle="miter"/>
| > >> >> > <v:formulas>
| > >> >> > <v:f eqn="if lineDrawn pixelLineWidth 0"/>
| > >> >> > <v:f eqn="sum @0 1 0"/>
| > >> >> > <v:f eqn="sum 0 0 @1"/>
| > >> >> > <v:f eqn="prod @2 1 2"/>
| > >> >> > <v:f eqn="prod @3 21600 pixelWidth"/>
| > >> >> > <v:f eqn="prod @3 21600 pixelHeight"/>
| > >> >> > <v:f eqn="sum @0 0 1"/>
| > >> >> > <v:f eqn="prod @6 1 2"/>
| > >> >> > <v:f eqn="prod @7 21600 pixelWidth"/>
| > >> >> > <v:f eqn="sum @8 21600 0"/>
| > >> >> > <v:f eqn="prod @7 21600 pixelHeight"/>
| > >> >> > <v:f eqn="sum @10 21600 0"/>
| > >> >> > </v:formulas>
| > >> >> > <v:path o:extrusionok="f" gradientshapeok="t"
| > >> >> > o:connecttype="rect"/>
| > >> >> > <o:lock v:ext="edit" aspectratio="t"/>
| > >> >> > </v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
| > >> >> > style='position:absolute;
| > >> >> > left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
| > >> >> > filled="t">
| > >> >> > <v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
| > >> >> > focusposition=".5,.5"
| > >> >> > focussize="" type="gradientRadial"/>
| > >> >> > <v:path o:extrusionok="t" o:connecttype="none"/>
| > >> >> > </v:shape><v:rect id="_x0000_s1132"
| > >> >> > style='position:absolute;left:3927;top:3307;
| > >> >> > width:4633;height:56' fillcolor="blue" stroked="f"/>
| > >> >> > <v:rect id="_x0000_s1133"
| > >> >> > style='position:absolute;left:3927;top:4176;width:4633;
| > >> >> > height:56' fillcolor="blue" stroked="f"/>
| > >> >> > <v:shapetype id="_x0000_t136" coordsize="21600,21600"
o:spt="136"
| > >> >> > adj="10800"
| > >> >> > path="m@7,l@8,m@5,21600l@6,21600e">
| > >> >> > <v:formulas>
| > >> >> > <v:f eqn="sum #0 0 10800"/>
| > >> >> > <v:f eqn="prod #0 2 1"/>
| > >> >> > <v:f eqn="sum 21600 0 @1"/>
| > >> >> > <v:f eqn="sum 0 0 @2"/>
| > >> >> > <v:f eqn="sum 21600 0 @3"/>
| > >> >> > <v:f eqn="if @0 @3 0"/>
| > >> >> > <v:f eqn="if @0 21600 @1"/>
| > >> >> > <v:f eqn="if @0 0 @2"/>
| > >> >> > <v:f eqn="if @0 @4 21600"/>
| > >> >> > <v:f eqn="mid @5 @6"/>
| > >> >> > <v:f eqn="mid @8 @5"/>
| > >> >> > <v:f eqn="mid @7 @8"/>
| > >> >> > <v:f eqn="mid @6 @7"/>
| > >> >> > <v:f eqn="sum @6 0 @5"/>
| > >> >> > </v:formulas>
| > >> >> > <v:path textpathok="t" o:connecttype="custom"
| > >> >> > o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
| > >> >> > o:connectangles="270,180,90,0"/>
| > >> >> > <v:textpath on="t" fitshape="t"/>
| > >> >> > <v:handles>
| > >> >> > <v:h position="#0,bottomRight" xrange="6629,14971"/>
| > >> >> > </v:handles>
| > >> >> > <o:lock v:ext="edit" text="t" shapetype="t"/>
| > >> >> > </v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
| > >> >> > style='position:absolute;
| > >> >> > left:4671;top:3467;width:2726;height:653' fillcolor="black"
| > >> >> > stroked="f"
| > >> >> > strokecolor="#9cf" strokeweight="0">
| > >> >> > <v:fill color2="#f99"/>
| > >> >> > <v:shadow type="perspective" opacity=".5" origin=",.5"
offset="0,0"
| > >> >> > matrix=",-56756f,,.5"/>
| > >> >> > <o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
| > >> >> > viewpoint="0,0"
| > >> >> > viewpointorigin="0,0" skewangle="0" skewamt="0"
| > >> >> > brightness="10000f"
| > >> >> > lightposition="-50000,50000" lightlevel="44000f"
| > >> >> > lightposition2="50000"
| > >> >> > lightlevel2="24000f" type="perspective"/>
| > >> >> > <v:textpath
| > >> >> > style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
| > >> >> > trim="t"
| > >> >> > fitpath="t" string=" South Island
| > >> >> > Shared Service Agency
| > >> >> > "/>
| > >> >> > </v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
| > >> >> > style='position:absolute;
| > >> >> > left:4241;top:4312;width:3898;height:169' fillcolor="black"
| > >> >> > stroked="f"
| > >> >> > strokecolor="#cff" strokeweight="0">
| > >> >> > <v:fill color2="#f99"/>
| > >> >> > <v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
| > >> >> > <o:extrusion v:ext="view" backdepth="18pt" color="#06c"
| > >> >> > viewpoint="-34.72222mm"
| > >> >> > viewpointorigin="-.5" skewangle="-45" brightness="10000f"
| > >> >> > lightposition="0,-50000"
| > >> >> > lightlevel="44000f" lightposition2="0,50000"
| > >> >> > lightlevel2="24000f"/>
| > >> >> > <v:textpath
| > >> >> > style='font-family:"Tahoma";font-size:12pt;font-style:italic;
| > >> >> > v-text-kern:t' trim="t" fitpath="t" string="Supporting the
South
| > >> >> > Island
| > >> >> > District Health Boards"/>
| > >> >> > </v:shape></v:group><![endif]--><![if !vml]><img width=355
height=88
| > >> >> > src="index10_files/image001.gif" v:shapes="_x0000_s1130
_x0000_s1131
| > >> >> > _x0000_s1132 _x0000_s1133 _x0000_s1134
| > >> >> > _x0000_s1135"><![endif]></span><p
| > >> >> > align="center">
| > >> >> > <!--[if gte vml 1]><v:shape
| > >> >> > id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga
Poari
| > >> >> > Hauora
| > >> >> > ki Te Waipounamu""
| > >> >> > style='width:273.75pt;height:16.5pt' stroked="f"
strokeweight="0">
| > >> >> > <v:shadow opacity="52429f"/>
| > >> >> > <v:textpath style='font-family:"Arial
| > >> >> > Black";font-size:10pt;font-style:italic;
| > >> >> > v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga
| > >> >> > Poari
| > >> >> > Hauora ki Te Waipounamu""/>
| > >> >> > </v:shape><![endif]--><![if !vml]><img border=0 width=365
height=22
| > >> >> > src="index10_files/image002.gif"
| > >> >> > alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
| > >> >> > v:shapes="_x0000_s1137"><![endif]></td>
| > >> >> > </tr>
| > >> >> > <tr>
| > >> >> > <td valign="top" rowspan="2" bgcolor="#004E9B">
| > >> >> > <div style="position: absolute; top: 169px; left: 16px; width:
| > >> >> > 120px;
| > >> >> > height: 77px; z-index: 2">
| > >> >> > <img border="0" src="images/punga1.gif" width="120"
| > >> >> > height="77"></div>
| > >> >> > </td>
| > >> >> > <td valign="top" colspan="2" height="86">
| > >> >> > <table cellpadding="0" cellspacing="0" border="0" width="100%"
| > >> >> > height="100%">
| > >> >> > <!-- MSCellFormattingTableID="2" -->
| > >> >> > <tr>
| > >> >> > <td height="100%" width="100%">
| > >> >> > <!-- MSCellFormattingType="content" -->
| > >> >> > <table border="0" width="100%" height="100%" cellpadding="2"
| > >> >> > cellspacing="0">
| > >> >> > <tr>
| > >> >> > <td width="100%" height="100%" valign="top"><div
| > >> >> >
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
| > >> >> > <img id='TrackPath_m80' src='menu-files/empty.gif' width='1'
| > >> >> > height='1'
| > >> >> > style='display:none' alt='' />
| > >> >> > <script type="text/javascript"
src="menu-files/menu80_m80_scr.js">
| > >> >> > </script>
| > >> >> >
| > >> >> > <table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
| > >> >> > style=";width:844px">
| > >> >> > <tr style="text-align:center">
| > >> >> > <td
onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
| > >> >> > onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
| > >> >> > onmousedown="f58('m80tlm0a')"
| > >> >> > style="width:113px;background-color:#004E9B"
| > >> >> > class="m80mit" ><a id="m80tlm0a" class="m80CL0"
href="file:///F:/my
| > >> >> > documents/sissal3/pages/index.htm" >Home</a></td>
| > >> >> > <td
onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
| > >> >> > onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
| > >> >> > onmousedown="f58('m80tlm1a')"
| > >> >> > style="width:119px;background-color:#004E9B"
| > >> >> > class="m80mit" ><a id="m80tlm1a" class="m80CL0"
href="file:///F:/my
| > >> >> > documents/sissal3/pages/Career.htm" >Careers</a></td>
| > >> >> > <td
onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
| > >> >> > onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
| > >> >> > onmousedown="f58('m80tlm2a')"
| > >> >> > style="width:121px;background-color:#004E9B"
| > >> >> > class="m80mit" ><a id="m80tlm2a" class="m80CL0"
href="file:///F:/my
| > >> >> > documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
 
M

Murray

Can you upload it to some webspace you control?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray
My website has not been published. Its only on my local disk. How shall i
send the link to you??

Mita

Murray said:
Is it possible to post a link to this page, so that I can see how the
page
displays?

--
Murray
--------------
MVP FrontPage


mita said:
Thanks for the help
there is a cell inside the page in the middle.. if this cell strtches,
the
left cell just on top of the navigation bar (vertical bar) which has
got a
picture in it(you might not see the picture).

:

So what do u suggest, If i dont include thw word art, what options
do I
have??

Anything but Word Art. You realize that only IE browsers will render
it?

I would open the browser and take a screen grab of the WordArt
rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now
all
browsers will see it.

and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many
disadvantages
to
all-javascript menus like this one produces.

But on to the original question -

Which table is expanding and what are you adding to it to make it
expand?


--
Murray
--------------
MVP FrontPage


Hi Murray

Since our company does not have a logo, i had to put the letter head
in
the
page and this letter head has already been designed in word art
using
drawing
box. It is basically a dwt page and the menu bars have been designed
using
DHTML menu builder..

The inner table in the middle of the page is the content page. When
I
try
to
add large data on this page, the left navigation menu bar(vertical)
also
starts stretching..
So what do u suggest, If i dont include thw word art, what options
do I
have??

Please help

Thanks

:

Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it
expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t"
o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5"
offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0"
brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath
style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000"
lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the
South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355
height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130
_x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga
Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f"
strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga
Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365
height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width:
120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120"
height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%">
<!-- MSCellFormattingTableID="2" -->
<tr>
<td height="100%" width="100%">
<!-- MSCellFormattingType="content" -->
<table border="0" width="100%" height="100%" cellpadding="2"
cellspacing="0">
<tr>
<td width="100%" height="100%" valign="top"><div
id="DMSMenu80_RjolNWNNeSUyMERvY3VtZW50cyU1Y1Npc3NhbCU1Y2hvcml6LmRtcw==">
<img id='TrackPath_m80' src='menu-files/empty.gif' width='1'
height='1'
style='display:none' alt='' />
<script type="text/javascript"
src="menu-files/menu80_m80_scr.js">
</script>

<table id="m80mainSXMenu2" cellspacing="1" cellpadding="4"
style=";width:844px">
<tr style="text-align:center">
<td onmouseover="chgBg(m80,'m80tlm0',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm0',0,1)" id="m80tlm0"
onmousedown="f58('m80tlm0a')"
style="width:113px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm0a" class="m80CL0"
href="file:///F:/my
documents/sissal3/pages/index.htm" >Home</a></td>
<td onmouseover="chgBg(m80,'m80tlm1',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm1',0,1)" id="m80tlm1"
onmousedown="f58('m80tlm1a')"
style="width:119px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm1a" class="m80CL0"
href="file:///F:/my
documents/sissal3/pages/Career.htm" >Careers</a></td>
<td onmouseover="chgBg(m80,'m80tlm2',3);exM(m80,'none','',event)"
onmouseout="chgBg(m80,'m80tlm2',0,1)" id="m80tlm2"
onmousedown="f58('m80tlm2a')"
style="width:121px;background-color:#004E9B"
class="m80mit" ><a id="m80tlm2a" class="m80CL0"
href="file:///F:/my
documents/sissal3/pages/Feedback.htm" >Feedback</a></td>
 
G

Guest

Sorry for my lack of knowledge Murray,but as far as I know we do not have a
webspace of our own..
Can you guide me as to how do i get a webspace because we do not have a
domain name .but if i need a free webspace just to show you how the page
looks like , can you help me in that??

Thanks


Murray said:
Can you upload it to some webspace you control?

--
Murray
--------------
MVP FrontPage


mita said:
Hi Murray
My website has not been published. Its only on my local disk. How shall i
send the link to you??

Mita

Murray said:
Is it possible to post a link to this page, so that I can see how the
page
displays?

--
Murray
--------------
MVP FrontPage


Thanks for the help
there is a cell inside the page in the middle.. if this cell strtches,
the
left cell just on top of the navigation bar (vertical bar) which has
got a
picture in it(you might not see the picture).

:

So what do u suggest, If i dont include thw word art, what options
do I
have??

Anything but Word Art. You realize that only IE browsers will render
it?

I would open the browser and take a screen grab of the WordArt
rendering.
Save it as a GIF or JPG image, crop it as needed, and use that. Now
all
browsers will see it.

and the menu bars have been designed using
DHTML menu builder..

I wouldn't touch that one either. There are just too many
disadvantages
to
all-javascript menus like this one produces.

But on to the original question -

Which table is expanding and what are you adding to it to make it
expand?


--
Murray
--------------
MVP FrontPage


Hi Murray

Since our company does not have a logo, i had to put the letter head
in
the
page and this letter head has already been designed in word art
using
drawing
box. It is basically a dwt page and the menu bars have been designed
using
DHTML menu builder..

The inner table in the middle of the page is the content page. When
I
try
to
add large data on this page, the left navigation menu bar(vertical)
also
starts stretching..
So what do u suggest, If i dont include thw word art, what options
do I
have??

Please help

Thanks

:

Ugh. So much word art/Office output? You know that Word Art's not
cross-browser compatible? What did you use to create the page?

Which table is expanding and what are you adding to it to make it
expand?

You have quite a few broken links in there, no?

--
Murray
--------------
MVP FrontPage


Hi Murray.
Here is the code for my website-


<html xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:blush:="urn:schemas-microsoft-com:blush:ffice:blush:ffice"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<link rel="File-List" href="index_files/filelist.xml">

<!--[if !mso]>
<style>
v\:* { behavior: url(#default#VML) }
o\:* { behavior: url(#default#VML) }
.shape { behavior: url(#default#VML) }
</style>
<![endif]-->
<!-- #BeginEditable "doctitle" -->
<!-- #EndEditable -->
<!--[if gte mso 9]>
<xml><o:shapedefaults v:ext="edit" spidmax="1027"/>
</xml><![endif]-->
</head>

<body>

<table cellpadding="0" cellspacing="0" width="973" height="100%">
<!-- MSTableType="layout" -->
<tr>
<td valign="top" bgcolor="#A0CAE9" colspan="3" height="139">
<p align="center">
<span style="font-size: 12.0pt; font-family: Times New Roman">
<!--[if
gte vml 1]><v:group id="_x0000_s1130"
editas="canvas" alt="" style='width:266.25pt;height:66pt;
mso-position-horizontal-relative:char;mso-position-vertical-relative:line'
coordorigin="3927,3307" coordsize="4633,1174">
<o:lock v:ext="edit" aspectratio="t"/>
<v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
stroked="f">
<v:stroke joinstyle="miter"/>
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
<v:f eqn="sum @0 1 0"/>
<v:f eqn="sum 0 0 @1"/>
<v:f eqn="prod @2 1 2"/>
<v:f eqn="prod @3 21600 pixelWidth"/>
<v:f eqn="prod @3 21600 pixelHeight"/>
<v:f eqn="sum @0 0 1"/>
<v:f eqn="prod @6 1 2"/>
<v:f eqn="prod @7 21600 pixelWidth"/>
<v:f eqn="sum @8 21600 0"/>
<v:f eqn="prod @7 21600 pixelHeight"/>
<v:f eqn="sum @10 21600 0"/>
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t"
o:connecttype="rect"/>
<o:lock v:ext="edit" aspectratio="t"/>
</v:shapetype><v:shape id="_x0000_s1131" type="#_x0000_t75"
style='position:absolute;
left:3927;top:3307;width:4633;height:1174' o:preferrelative="f"
filled="t">
<v:fill color2="#d1e8ff" rotate="t" o:detectmouseclick="t"
focusposition=".5,.5"
focussize="" type="gradientRadial"/>
<v:path o:extrusionok="t" o:connecttype="none"/>
</v:shape><v:rect id="_x0000_s1132"
style='position:absolute;left:3927;top:3307;
width:4633;height:56' fillcolor="blue" stroked="f"/>
<v:rect id="_x0000_s1133"
style='position:absolute;left:3927;top:4176;width:4633;
height:56' fillcolor="blue" stroked="f"/>
<v:shapetype id="_x0000_t136" coordsize="21600,21600" o:spt="136"
adj="10800"
path="m@7,l@8,m@5,21600l@6,21600e">
<v:formulas>
<v:f eqn="sum #0 0 10800"/>
<v:f eqn="prod #0 2 1"/>
<v:f eqn="sum 21600 0 @1"/>
<v:f eqn="sum 0 0 @2"/>
<v:f eqn="sum 21600 0 @3"/>
<v:f eqn="if @0 @3 0"/>
<v:f eqn="if @0 21600 @1"/>
<v:f eqn="if @0 0 @2"/>
<v:f eqn="if @0 @4 21600"/>
<v:f eqn="mid @5 @6"/>
<v:f eqn="mid @8 @5"/>
<v:f eqn="mid @7 @8"/>
<v:f eqn="mid @6 @7"/>
<v:f eqn="sum @6 0 @5"/>
</v:formulas>
<v:path textpathok="t" o:connecttype="custom"
o:connectlocs="@9,0;@10,10800;@11,21600;@12,10800"
o:connectangles="270,180,90,0"/>
<v:textpath on="t" fitshape="t"/>
<v:handles>
<v:h position="#0,bottomRight" xrange="6629,14971"/>
</v:handles>
<o:lock v:ext="edit" text="t" shapetype="t"/>
</v:shapetype><v:shape id="_x0000_s1134" type="#_x0000_t136"
style='position:absolute;
left:4671;top:3467;width:2726;height:653' fillcolor="black"
stroked="f"
strokecolor="#9cf" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow type="perspective" opacity=".5" origin=",.5"
offset="0,0"
matrix=",-56756f,,.5"/>
<o:extrusion v:ext="view" color="#06c" rotationangle="-25,-25"
viewpoint="0,0"
viewpointorigin="0,0" skewangle="0" skewamt="0"
brightness="10000f"
lightposition="-50000,50000" lightlevel="44000f"
lightposition2="50000"
lightlevel2="24000f" type="perspective"/>
<v:textpath
style='font-family:"Tahoma";font-size:18pt;v-text-kern:t'
trim="t"
fitpath="t" string=" South Island
Shared Service Agency
"/>
</v:shape><v:shape id="_x0000_s1135" type="#_x0000_t136"
style='position:absolute;
left:4241;top:4312;width:3898;height:169' fillcolor="black"
stroked="f"
strokecolor="#cff" strokeweight="0">
<v:fill color2="#f99"/>
<v:shadow color="#868686" opacity=".5" offset="6pt,-6pt"/>
<o:extrusion v:ext="view" backdepth="18pt" color="#06c"
viewpoint="-34.72222mm"
viewpointorigin="-.5" skewangle="-45" brightness="10000f"
lightposition="0,-50000"
lightlevel="44000f" lightposition2="0,50000"
lightlevel2="24000f"/>
<v:textpath
style='font-family:"Tahoma";font-size:12pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string="Supporting the
South
Island
District Health Boards"/>
</v:shape></v:group><![endif]--><![if !vml]><img width=355
height=88
src="index10_files/image001.gif" v:shapes="_x0000_s1130
_x0000_s1131
_x0000_s1132 _x0000_s1133 _x0000_s1134
_x0000_s1135"><![endif]></span><p
align="center">
<!--[if gte vml 1]><v:shape
id="_x0000_s1137" type="#_x0000_t136" alt=""E tautoko ana nga
Poari
Hauora
ki Te Waipounamu""
style='width:273.75pt;height:16.5pt' stroked="f"
strokeweight="0">
<v:shadow opacity="52429f"/>
<v:textpath style='font-family:"Arial
Black";font-size:10pt;font-style:italic;
v-text-kern:t' trim="t" fitpath="t" string=""E tautoko ana nga
Poari
Hauora ki Te Waipounamu""/>
</v:shape><![endif]--><![if !vml]><img border=0 width=365
height=22
src="index10_files/image002.gif"
alt=""E tautoko ana nga Poari Hauora ki Te Waipounamu""
v:shapes="_x0000_s1137"><![endif]></td>
</tr>
<tr>
<td valign="top" rowspan="2" bgcolor="#004E9B">
<div style="position: absolute; top: 169px; left: 16px; width:
120px;
height: 77px; z-index: 2">
<img border="0" src="images/punga1.gif" width="120"
height="77"></div>
</td>
<td valign="top" colspan="2" height="86">
<table cellpadding="0" cellspacing="0" border="0" width="100%"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top