PC Review


Reply
Thread Tools Rate Thread

center my page

 
 
=?Utf-8?B?c3RldmU=?=
Guest
Posts: n/a
 
      21st Sep 2005
Hi,
Is there a good way to center my website horizontally? I have read the
post, and tried a few suggestions...but they haven't worked yet.
www.nakolohekane.com
I did not even use a table to build this site, which might be the problem.
I just started adding in layers. Can I add a table now and center it? And if
so, plese tell me how- because the attempts I have made just scramble all of
my layers randomly.
If you have any other suggestions for my site, please tell me!
Thanks a lot.
 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      21st Sep 2005
> I just started adding in layers.

Uh oh. Go to any of your pages in your favorite browser and set your text
size to the largest size. Imagine how it will look when you get content
there. Do you still want to work with this layout?

--
Murray
============

"steve" <(E-Mail Removed)> wrote in message
news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
> Hi,
> Is there a good way to center my website horizontally? I have read the
> post, and tried a few suggestions...but they haven't worked yet.
> www.nakolohekane.com
> I did not even use a table to build this site, which might be the problem.
> I just started adding in layers. Can I add a table now and center it? And
> if
> so, plese tell me how- because the attempts I have made just scramble all
> of
> my layers randomly.
> If you have any other suggestions for my site, please tell me!
> Thanks a lot.



 
Reply With Quote
 
=?Utf-8?B?c3RldmU=?=
Guest
Posts: n/a
 
      21st Sep 2005
Not quite sure what you mean Murry, but my site has content that seems to be
fine other than the fact that I can't center it on the screen.

"Murray" wrote:

> > I just started adding in layers.

>
> Uh oh. Go to any of your pages in your favorite browser and set your text
> size to the largest size. Imagine how it will look when you get content
> there. Do you still want to work with this layout?
>
> --
> Murray
> ============
>
> "steve" <(E-Mail Removed)> wrote in message
> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
> > Hi,
> > Is there a good way to center my website horizontally? I have read the
> > post, and tried a few suggestions...but they haven't worked yet.
> > www.nakolohekane.com
> > I did not even use a table to build this site, which might be the problem.
> > I just started adding in layers. Can I add a table now and center it? And
> > if
> > so, plese tell me how- because the attempts I have made just scramble all
> > of
> > my layers randomly.
> > If you have any other suggestions for my site, please tell me!
> > Thanks a lot.

>
>
>

 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      21st Sep 2005
Your home page is a mess in FireFox, Netscape and Mozilla with text
enlarged, and will be in IE if I switched to using my own font-sizes
in Accessibility options.
See www.rxs-enterprises.org/tests/pages/aloha.htm for a screen dump.
The text in IE is a bit on the small side for me - especially Times
New Roman, small serif fonts do not display well on a screen - but
your choice of units is not resizable in IE. Also "Zurich Ex BT" will
display as Times New Roman in most browsers, since this is not a
common font.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"steve" <(E-Mail Removed)> wrote in message
news:C3AF7FD3-C6A6-4A28-82E6-(E-Mail Removed)...
> Not quite sure what you mean Murry, but my site has content that
> seems to be
> fine other than the fact that I can't center it on the screen.
>
> "Murray" wrote:
>
>> > I just started adding in layers.

>>
>> Uh oh. Go to any of your pages in your favorite browser and set
>> your text
>> size to the largest size. Imagine how it will look when you get
>> content
>> there. Do you still want to work with this layout?
>>
>> --
>> Murray
>> ============
>>
>> "steve" <(E-Mail Removed)> wrote in message
>> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
>> > Hi,
>> > Is there a good way to center my website horizontally? I have
>> > read the
>> > post, and tried a few suggestions...but they haven't worked yet.
>> > www.nakolohekane.com
>> > I did not even use a table to build this site, which might be the
>> > problem.
>> > I just started adding in layers. Can I add a table now and center
>> > it? And
>> > if
>> > so, plese tell me how- because the attempts I have made just
>> > scramble all
>> > of
>> > my layers randomly.
>> > If you have any other suggestions for my site, please tell me!
>> > Thanks a lot.

>>
>>
>>



 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      21st Sep 2005
To centre the site (and retain absolute positioning) add this to the
<head> section
<style type"text/css">
#wrapper{
width:760px;
position:relative;
margin:0 auto;
padding:0;
text-align:left;
}
body{text-align:center;margin:0;padding:0;}
</style>

Immediately after the <body> tag change
<div align="center"> to <div id="wrapper">

See my other post regarding your choice of fonts and Abs Pos.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"steve" <(E-Mail Removed)> wrote in message
news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
> Hi,
> Is there a good way to center my website horizontally? I have read
> the
> post, and tried a few suggestions...but they haven't worked yet.
> www.nakolohekane.com
> I did not even use a table to build this site, which might be the
> problem.
> I just started adding in layers. Can I add a table now and center
> it? And if
> so, plese tell me how- because the attempts I have made just
> scramble all of
> my layers randomly.
> If you have any other suggestions for my site, please tell me!
> Thanks a lot.



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      21st Sep 2005
And don't forget the ever popular

<!-- /wrapper -->
</div>

immediately before </body>....

--
Murray
============

"Ronx" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> To centre the site (and retain absolute positioning) add this to the
> <head> section
> <style type"text/css">
> #wrapper{
> width:760px;
> position:relative;
> margin:0 auto;
> padding:0;
> text-align:left;
> }
> body{text-align:center;margin:0;padding:0;}
> </style>
>
> Immediately after the <body> tag change
> <div align="center"> to <div id="wrapper">
>
> See my other post regarding your choice of fonts and Abs Pos.
> --
> Ron Symonds
> Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> "steve" <(E-Mail Removed)> wrote in message
> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
>> Hi,
>> Is there a good way to center my website horizontally? I have read the
>> post, and tried a few suggestions...but they haven't worked yet.
>> www.nakolohekane.com
>> I did not even use a table to build this site, which might be the
>> problem.
>> I just started adding in layers. Can I add a table now and center it? And
>> if
>> so, plese tell me how- because the attempts I have made just scramble all
>> of
>> my layers randomly.
>> If you have any other suggestions for my site, please tell me!
>> Thanks a lot.

>
>



 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      22nd Sep 2005
He has already got that </div> in place - from the <div
align="center">
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> And don't forget the ever popular
>
> <!-- /wrapper -->
> </div>
>
> immediately before </body>....
>
> --
> Murray
> ============
>
> "Ronx" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> To centre the site (and retain absolute positioning) add this to
>> the <head> section
>> <style type"text/css">
>> #wrapper{
>> width:760px;
>> position:relative;
>> margin:0 auto;
>> padding:0;
>> text-align:left;
>> }
>> body{text-align:center;margin:0;padding:0;}
>> </style>
>>
>> Immediately after the <body> tag change
>> <div align="center"> to <div id="wrapper">
>>
>> See my other post regarding your choice of fonts and Abs Pos.
>> --
>> Ron Symonds
>> Microsoft MVP (FrontPage)
>> Reply only to group - emails will be deleted unread.
>>
>> "steve" <(E-Mail Removed)> wrote in message
>> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
>>> Hi,
>>> Is there a good way to center my website horizontally? I have read
>>> the
>>> post, and tried a few suggestions...but they haven't worked yet.
>>> www.nakolohekane.com
>>> I did not even use a table to build this site, which might be the
>>> problem.
>>> I just started adding in layers. Can I add a table now and center
>>> it? And if
>>> so, plese tell me how- because the attempts I have made just
>>> scramble all of
>>> my layers randomly.
>>> If you have any other suggestions for my site, please tell me!
>>> Thanks a lot.

>>
>>

>
>



 
Reply With Quote
 
=?Utf-8?B?c3RldmU=?=
Guest
Posts: n/a
 
      22nd Sep 2005
Ronx- You're HTML worked great on most of the pages, thanks.....but do you
know why it would leave behind some of the layers with text inside and even a
picture on a couple pages?
I had to move them all back to the left for now.
thanks

"Ronx" wrote:

> He has already got that </div> in place - from the <div
> align="center">
> --
> Ron Symonds
> Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > And don't forget the ever popular
> >
> > <!-- /wrapper -->
> > </div>
> >
> > immediately before </body>....
> >
> > --
> > Murray
> > ============
> >
> > "Ronx" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> >> To centre the site (and retain absolute positioning) add this to
> >> the <head> section
> >> <style type"text/css">
> >> #wrapper{
> >> width:760px;
> >> position:relative;
> >> margin:0 auto;
> >> padding:0;
> >> text-align:left;
> >> }
> >> body{text-align:center;margin:0;padding:0;}
> >> </style>
> >>
> >> Immediately after the <body> tag change
> >> <div align="center"> to <div id="wrapper">
> >>
> >> See my other post regarding your choice of fonts and Abs Pos.
> >> --
> >> Ron Symonds
> >> Microsoft MVP (FrontPage)
> >> Reply only to group - emails will be deleted unread.
> >>
> >> "steve" <(E-Mail Removed)> wrote in message
> >> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
> >>> Hi,
> >>> Is there a good way to center my website horizontally? I have read
> >>> the
> >>> post, and tried a few suggestions...but they haven't worked yet.
> >>> www.nakolohekane.com
> >>> I did not even use a table to build this site, which might be the
> >>> problem.
> >>> I just started adding in layers. Can I add a table now and center
> >>> it? And if
> >>> so, plese tell me how- because the attempts I have made just
> >>> scramble all of
> >>> my layers randomly.
> >>> If you have any other suggestions for my site, please tell me!
> >>> Thanks a lot.
> >>
> >>

> >
> >

>
>
>

 
Reply With Quote
 
=?Utf-8?B?c3RldmU=?=
Guest
Posts: n/a
 
      22nd Sep 2005
I think I answered my own second question through experimentation, thanks for
the help though.
As far as what you were saying earlier, about my site being a mess in
firefox and anything but IE- what can I do about it? any suggestions?

"steve" wrote:

> Ronx- You're HTML worked great on most of the pages, thanks.....but do you
> know why it would leave behind some of the layers with text inside and even a
> picture on a couple pages?
> I had to move them all back to the left for now.
> thanks
>
> "Ronx" wrote:
>
> > He has already got that </div> in place - from the <div
> > align="center">
> > --
> > Ron Symonds
> > Microsoft MVP (FrontPage)
> > Reply only to group - emails will be deleted unread.
> >
> > "Murray" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > And don't forget the ever popular
> > >
> > > <!-- /wrapper -->
> > > </div>
> > >
> > > immediately before </body>....
> > >
> > > --
> > > Murray
> > > ============
> > >
> > > "Ronx" <(E-Mail Removed)> wrote in message
> > > news:(E-Mail Removed)...
> > >> To centre the site (and retain absolute positioning) add this to
> > >> the <head> section
> > >> <style type"text/css">
> > >> #wrapper{
> > >> width:760px;
> > >> position:relative;
> > >> margin:0 auto;
> > >> padding:0;
> > >> text-align:left;
> > >> }
> > >> body{text-align:center;margin:0;padding:0;}
> > >> </style>
> > >>
> > >> Immediately after the <body> tag change
> > >> <div align="center"> to <div id="wrapper">
> > >>
> > >> See my other post regarding your choice of fonts and Abs Pos.
> > >> --
> > >> Ron Symonds
> > >> Microsoft MVP (FrontPage)
> > >> Reply only to group - emails will be deleted unread.
> > >>
> > >> "steve" <(E-Mail Removed)> wrote in message
> > >> news:C0EAE9E1-4180-4DA5-8A0E-(E-Mail Removed)...
> > >>> Hi,
> > >>> Is there a good way to center my website horizontally? I have read
> > >>> the
> > >>> post, and tried a few suggestions...but they haven't worked yet.
> > >>> www.nakolohekane.com
> > >>> I did not even use a table to build this site, which might be the
> > >>> problem.
> > >>> I just started adding in layers. Can I add a table now and center
> > >>> it? And if
> > >>> so, plese tell me how- because the attempts I have made just
> > >>> scramble all of
> > >>> my layers randomly.
> > >>> If you have any other suggestions for my site, please tell me!
> > >>> Thanks a lot.
> > >>
> > >>
> > >
> > >

> >
> >
> >

 
Reply With Quote
 
fido
Guest
Posts: n/a
 
      22nd Sep 2005
On Wed, 21 Sep 2005 23:28:02 -0700, "steve"
<(E-Mail Removed)> wrote:

>I think I answered my own second question through experimentation, thanks for
>the help though.
>As far as what you were saying earlier, about my site being a mess in
>firefox and anything but IE- what can I do about it? any suggestions?


That's not quite what he said, although that's the way I read it at
first.

It looks fine in Firefox until you start enlarging the font size,
which some users are always liable to do. When you do that the text in
the blue area - "Aloha!" - quickly becomes enormous with each
increase.

When you increase the font size in IE, the text also overflows the
blue area but not so wildly as in Firefox.

What to do? I'd get rid of the absolute positioning and use tables for
the layout. I'd use a stylesheet to specify fonts and font-sizes. It
probably wouldn't be the FP way, it might not even be the "right" way,
but it would work.

fido
 
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
Center on Page Richard Microsoft Frontpage 2 11th Jan 2010 10:54 PM
Re: How do I center my whole web page Chris Leeds, MVP - FrontPage Microsoft Frontpage 26 8th Mar 2007 03:44 PM
center everything on my page =?Utf-8?B?c3RldmU=?= Microsoft Frontpage 3 22nd Sep 2005 04:40 AM
Center of Page =?Utf-8?B?Zm9yZ2l2ZW4zMjAw?= Microsoft Word Document Management 3 12th Nov 2004 03:27 PM
Center on page Dean Microsoft VB .NET 1 2nd Jul 2004 10:10 PM


Features
 

Advertising
 

Newsgroups
 


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