Want to create a special site layout!

I

ideacon

But I don't know the wordings, so I can't explain how I want my design to
look like.
But please take a look at this link:
www.thaisunshinedevelopments.com
What I want is my site when uploaded to my server will look like this one.
Centered in the middle of the screen, like in 1 big single frame....is this
possible??
Please help...it is really appreciated! Thanks in advance!
 
T

Tom Willett

Use a master table centered on the page.
--
===
Tom Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/
===
| But I don't know the wordings, so I can't explain how I want my design to
| look like.
| But please take a look at this link:
| www.thaisunshinedevelopments.com
| What I want is my site when uploaded to my server will look like this one.
| Centered in the middle of the screen, like in 1 big single frame....is
this
| possible??
| Please help...it is really appreciated! Thanks in advance!
 
I

ideacon

Thanks, Tom....but how do I do that? :) If you could provide me with a link
to where I can find this info??
 
I

ideacon

Hi again, Tom. Maybe I should explain more...I've already designed my site
and it is uploaded....but I want it to appear like the link
www.thaisunshinedevelopments.com

So if I insert a master table...can I cut and paste everything into this
table including the shared top, bottom and navigation borders?
Sound good, but I have no clue how to do?
Thanks, Tom, your support is greatly appreciated :)
 
R

Ronx

If you use shared borders, you cannot centre the content. Change the
shared borders to include files, or use a Dynamic Web Template instead.
With include files, the entire page with the includes can be placed
inside the master table.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
I

ideacon

OK, I've doen what you said...with DWT....and placed the TWD inside a
table....but how do I centre this table?
 
R

Ronx

TWD = DWT? If so, you can't put a table in a DWT - a Dynamic web
Template is a document.
You place the table in the DWT.

Try this instead - type it into the DWT
This starts near the bottom of the <head> section in code view.




<style type="text/css">
body {text-align:center;}
#wrapper {position:relative;width:760px;text-align:left;margin:0 auto;}
</style>
</head>

<body>
<div id="wrapper">
<div>Top border goes here</div>
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="150">Left Border goes here</td>
<td><!-- #beginEditable "contents" -->Page contents goes here<!--
#EndEditable --></td>
</tr>
</table>
<div>Bottom Border goes here</div>
</div>
</body>
</html>

The page will be centred with a width of 760px - suitable for browsers
down to 800pixels wide.
--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.
FrontPage Support: http://www.frontpagemvps.com/
http://www.rxs-enterprises.org/fp
 
Top