PC Review


Reply
 
 
flamtech
Guest
Posts: n/a
 
      16th Sep 2007
Hi
I want my website to have a white body that is 800 pixels wide where I
can enter my data, and then around the body I want a border that fills
the rest of the space. So it doesnt matter what the resolution of the
visitor screen is, the body will always be in the middle.

A long time ago I did came across a website explaining how to do it,
but now I cant find it.

I tried to use tables, but that doesnt work.

The website is gratisfax.co.za

Thanks

Reynier

 
Reply With Quote
 
 
 
 
Rob Giordano \(Crash\)
Guest
Posts: n/a
 
      16th Sep 2007
Tables don't work?
Create a table 760px wide and center it on the page



--
~~~~~~~~~~~~~~~~~~
Rob Giordano
Microsoft MVP Expression





"flamtech" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
| Hi
| I want my website to have a white body that is 800 pixels wide where I
| can enter my data, and then around the body I want a border that fills
| the rest of the space. So it doesnt matter what the resolution of the
| visitor screen is, the body will always be in the middle.
|
| A long time ago I did came across a website explaining how to do it,
| but now I cant find it.
|
| I tried to use tables, but that doesnt work.
|
| The website is gratisfax.co.za
|
| Thanks
|
| Reynier
|


 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      16th Sep 2007
> So it doesnt matter what the resolution of the visitor screen is

Resolution is not the important variable - it's browser viewport width. You
can set MANY different viewport widths on a given resolution/size screen.
One, or more, of those widths may cause you problems.

> I tried to use tables, but that doesnt work.


It will if you use a single outer table with a fixed width, and set to
center align.

--
Murray
--------------
MVP ExpressionWeb


"flamtech" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi
> I want my website to have a white body that is 800 pixels wide where I
> can enter my data, and then around the body I want a border that fills
> the rest of the space. So it doesnt matter what the resolution of the
> visitor screen is, the body will always be in the middle.
>
> A long time ago I did came across a website explaining how to do it,
> but now I cant find it.
>
> I tried to use tables, but that doesnt work.
>
> The website is gratisfax.co.za
>
> Thanks
>
> Reynier
>



 
Reply With Quote
 
flamtech
Guest
Posts: n/a
 
      16th Sep 2007
On Sep 16, 9:39 pm, "Murray" <for...@HAHAgreat-web-sights.com> wrote:
> > So it doesnt matter what the resolution of the visitor screen is

>
> Resolution is not the important variable - it's browser viewport width. You
> can set MANY different viewport widths on a given resolution/size screen.
> One, or more, of those widths may cause you problems.
>
> > I tried to use tables, but that doesnt work.

>
> It will if you use a single outer table with a fixed width, and set to
> center align.
>
> --
> Murray
> --------------
> MVP ExpressionWeb
>
> "flamtech" <regtesk...@gmail.com> wrote in message
>
> news:(E-Mail Removed)...
>
>
>
> > Hi
> > I want my website to have a white body that is 800 pixels wide where I
> > can enter my data, and then around the body I want a border that fills
> > the rest of the space. So it doesnt matter what the resolution of the
> > visitor screen is, the body will always be in the middle.

>
> > A long time ago I did came across a website explaining how to do it,
> > but now I cant find it.

>
> > I tried to use tables, but that doesnt work.

>
> > The website is gratisfax.co.za

>
> > Thanks

>
> > Reynier- Hide quoted text -

>
> - Show quoted text -


Thank you for the answer.

Please remember that I want to place a white body on a grey background
and the background must fill the whole screen and the body must be
centerd.

 
Reply With Quote
 
=?Utf-8?B?Q29yZXkgQnJ5YW50?=
Guest
Posts: n/a
 
      16th Sep 2007
http://www.loudexpressions.com/2007/...e-in-frontpage might
help some.
--
Corey R. Bryant
http://www.milehighmerchantaccount.com/ | http://www.loudpci.com/ |
http://www.mymerchantaccountblog.com/ | http://www.loudexpressions.com/


"flamtech" wrote:

> Hi
> I want my website to have a white body that is 800 pixels wide where I
> can enter my data, and then around the body I want a border that fills
> the rest of the space. So it doesnt matter what the resolution of the
> visitor screen is, the body will always be in the middle.
>
> A long time ago I did came across a website explaining how to do it,
> but now I cant find it.
>
> I tried to use tables, but that doesnt work.
>
> The website is gratisfax.co.za
>
> Thanks
>
> Reynier
>
>

 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      16th Sep 2007
Create the page and set the back ground color.
Create the table and center it.
Set the background color of the table to white.

Here's an example, copy and paste onto a new empty page in code view.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>sample page</title>
<style type="text/css">
body {
background-color: #C0C0C0;
}
..table1 {
background-color: #FFFFFF;
margin: auto;
width: 720px;
}
</style>
</head>

<body>

<table class="table1">
<tr>
<td>&nbsp;</td>
</tr>
</table>

</body>

</html>

--

Steve Easton
Microsoft MVP FrontPage
FP Cleaner
http://www.95isalive.com/fixes/fpclean.htm
Hit Me FP
http://www.95isalive.com/fixes/HitMeFP.htm

"flamtech" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> On Sep 16, 9:39 pm, "Murray" <for...@HAHAgreat-web-sights.com> wrote:
>> > So it doesnt matter what the resolution of the visitor screen is

>>
>> Resolution is not the important variable - it's browser viewport width. You
>> can set MANY different viewport widths on a given resolution/size screen.
>> One, or more, of those widths may cause you problems.
>>
>> > I tried to use tables, but that doesnt work.

>>
>> It will if you use a single outer table with a fixed width, and set to
>> center align.
>>
>> --
>> Murray
>> --------------
>> MVP ExpressionWeb
>>
>> "flamtech" <regtesk...@gmail.com> wrote in message
>>
>> news:(E-Mail Removed)...
>>
>>
>>
>> > Hi
>> > I want my website to have a white body that is 800 pixels wide where I
>> > can enter my data, and then around the body I want a border that fills
>> > the rest of the space. So it doesnt matter what the resolution of the
>> > visitor screen is, the body will always be in the middle.

>>
>> > A long time ago I did came across a website explaining how to do it,
>> > but now I cant find it.

>>
>> > I tried to use tables, but that doesnt work.

>>
>> > The website is gratisfax.co.za

>>
>> > Thanks

>>
>> > Reynier- Hide quoted text -

>>
>> - Show quoted text -

>
> Thank you for the answer.
>
> Please remember that I want to place a white body on a grey background
> and the background must fill the whole screen and the body must be
> centerd.
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      17th Sep 2007
I remembered that. It's really quite easy using the methods others have
described here.

The page background color is gray. The table's background color is white.

--
Murray
--------------
MVP ExpressionWeb


"flamtech" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> On Sep 16, 9:39 pm, "Murray" <for...@HAHAgreat-web-sights.com> wrote:
>> > So it doesnt matter what the resolution of the visitor screen is

>>
>> Resolution is not the important variable - it's browser viewport width.
>> You
>> can set MANY different viewport widths on a given resolution/size screen.
>> One, or more, of those widths may cause you problems.
>>
>> > I tried to use tables, but that doesnt work.

>>
>> It will if you use a single outer table with a fixed width, and set to
>> center align.
>>
>> --
>> Murray
>> --------------
>> MVP ExpressionWeb
>>
>> "flamtech" <regtesk...@gmail.com> wrote in message
>>
>> news:(E-Mail Removed)...
>>
>>
>>
>> > Hi
>> > I want my website to have a white body that is 800 pixels wide where I
>> > can enter my data, and then around the body I want a border that fills
>> > the rest of the space. So it doesnt matter what the resolution of the
>> > visitor screen is, the body will always be in the middle.

>>
>> > A long time ago I did came across a website explaining how to do it,
>> > but now I cant find it.

>>
>> > I tried to use tables, but that doesnt work.

>>
>> > The website is gratisfax.co.za

>>
>> > Thanks

>>
>> > Reynier- Hide quoted text -

>>
>> - Show quoted text -

>
> Thank you for the answer.
>
> Please remember that I want to place a white body on a grey background
> and the background must fill the whole screen and the body must be
> centerd.
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Some body know how to find "Centre Pane of Target Designer" =?Utf-8?B?SmF0aW5kZXI=?= Windows XP General 1 30th Sep 2005 05:10 PM
Windows Security Centre or McAfee Security Centre (post-SP2) Peter D Windows XP Customization 4 24th Apr 2005 03:43 PM
Windows Security Centre or McAfee Security Centre (post-SP2) Peter D Windows XP General 5 24th Apr 2005 03:43 PM
Windows Security Centre or McAfee Security Centre (post-SP2) Peter D Windows XP Setup 4 24th Apr 2005 03:43 PM
Windows Security Centre or McAfee Security Centre (post-SP2) Peter D Windows XP Help 4 24th Apr 2005 03:43 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:15 PM.