PC Review


Reply
 
 
Fred
Guest
Posts: n/a
 
      1st Aug 2005
"None of your pages have the body tag borders set to 0" Could some kind
person inform me how I set up body tags? Fred



 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      1st Aug 2005
> "None of your pages have the body tag borders set to 0"

Where did you see that?

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

"Fred" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "None of your pages have the body tag borders set to 0" Could some kind
> person inform me how I set up body tags? Fred
>
>
>



 
Reply With Quote
 
Tom Pepper Willett
Guest
Posts: n/a
 
      1st Aug 2005
IIRC, he was told this in a previous (different) post.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/off...tid=FX01085802
How to ask a newsgroup question:
http://support.microsoft.com/kb/555375
===
"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
|> "None of your pages have the body tag borders set to 0"
|
| Where did you see that?
|
| --
| Murray
| ============
|
| "Fred" <(E-Mail Removed)> wrote in message
| news:(E-Mail Removed)...
| > "None of your pages have the body tag borders set to 0" Could some kind
| > person inform me how I set up body tags? Fred
| >
| >
| >
|
|


 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      1st Aug 2005
Who have you ever known to set borders on a body tag? Try it. It's unique.

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

"Tom Pepper Willett" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> IIRC, he was told this in a previous (different) post.
> --
> ===
> Tom "Pepper" Willett
> Microsoft MVP - FrontPage
> ---
> About FrontPage 2003:
> http://office.microsoft.com/home/off...tid=FX01085802
> How to ask a newsgroup question:
> http://support.microsoft.com/kb/555375
> ===
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> |> "None of your pages have the body tag borders set to 0"
> |
> | Where did you see that?
> |
> | --
> | Murray
> | ============
> |
> | "Fred" <(E-Mail Removed)> wrote in message
> | news:(E-Mail Removed)...
> | > "None of your pages have the body tag borders set to 0" Could some
> kind
> | > person inform me how I set up body tags? Fred
> | >
> | >
> | >
> |
> |
>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      1st Aug 2005
Perhaps they meant margins?

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

"Tom Pepper Willett" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> IIRC, he was told this in a previous (different) post.
> --
> ===
> Tom "Pepper" Willett
> Microsoft MVP - FrontPage
> ---
> About FrontPage 2003:
> http://office.microsoft.com/home/off...tid=FX01085802
> How to ask a newsgroup question:
> http://support.microsoft.com/kb/555375
> ===
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> |> "None of your pages have the body tag borders set to 0"
> |
> | Where did you see that?
> |
> | --
> | Murray
> | ============
> |
> | "Fred" <(E-Mail Removed)> wrote in message
> | news:(E-Mail Removed)...
> | > "None of your pages have the body tag borders set to 0" Could some
> kind
> | > person inform me how I set up body tags? Fred
> | >
> | >
> | >
> |
> |
>
>



 
Reply With Quote
 
Tom Pepper Willett
Guest
Posts: n/a
 
      2nd Aug 2005
Yes, I believe it was about margins.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/off...tid=FX01085802
How to ask a newsgroup question:
http://support.microsoft.com/kb/555375
===
"Murray" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
| Perhaps they meant margins?
|
| --
| Murray
| ============
|
| "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
| news:(E-Mail Removed)...
| > IIRC, he was told this in a previous (different) post.
| > --
| > ===
| > Tom "Pepper" Willett
| > Microsoft MVP - FrontPage
| > ---
| > About FrontPage 2003:
| > http://office.microsoft.com/home/off...tid=FX01085802
| > How to ask a newsgroup question:
| > http://support.microsoft.com/kb/555375
| > ===
| > "Murray" <(E-Mail Removed)> wrote in message
| > news:(E-Mail Removed)...
| > |> "None of your pages have the body tag borders set to 0"
| > |
| > | Where did you see that?
| > |
| > | --
| > | Murray
| > | ============
| > |
| > | "Fred" <(E-Mail Removed)> wrote in message
| > | news:(E-Mail Removed)...
| > | > "None of your pages have the body tag borders set to 0" Could some
| > kind
| > | > person inform me how I set up body tags? Fred
| > | >
| > | >
| > | >
| > |
| > |
| >
| >
|
|


 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      2nd Aug 2005
Here's how to set margins -

Link to an external stylesheet, or embed a stylesheet in your code (between
<head> and </head>) with the following style in it (embedded shown for
cut-n-paste convenience) (assuming you want zero margins) -

<style type="text/css">
<!--
body { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
padding:0; }
-->
</style>
(when the value is zero, units are not required)

you could also try

body { margin: 0 0 0 0; padding:0; }

or

body { margin: 0; padding:0; }

as a shorthand method.

This will take care of the margins in IE4+ and NN6+.

To get completely valid code that works for all
browsers, change your stylesheet as shown below -

body {
padding: 0;
margin: 0 -10px 0 -10px;
/*/*/margin: 0 0 0 0; /* */
}
(this is called a CSS "hack" - the bottom line is not read by NN4x)


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

"Tom Pepper Willett" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Yes, I believe it was about margins.
> --
> ===
> Tom "Pepper" Willett
> Microsoft MVP - FrontPage
> ---
> About FrontPage 2003:
> http://office.microsoft.com/home/off...tid=FX01085802
> How to ask a newsgroup question:
> http://support.microsoft.com/kb/555375
> ===
> "Murray" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
> | Perhaps they meant margins?
> |
> | --
> | Murray
> | ============
> |
> | "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
> | news:(E-Mail Removed)...
> | > IIRC, he was told this in a previous (different) post.
> | > --
> | > ===
> | > Tom "Pepper" Willett
> | > Microsoft MVP - FrontPage
> | > ---
> | > About FrontPage 2003:
> | > http://office.microsoft.com/home/off...tid=FX01085802
> | > How to ask a newsgroup question:
> | > http://support.microsoft.com/kb/555375
> | > ===
> | > "Murray" <(E-Mail Removed)> wrote in message
> | > news:(E-Mail Removed)...
> | > |> "None of your pages have the body tag borders set to 0"
> | > |
> | > | Where did you see that?
> | > |
> | > | --
> | > | Murray
> | > | ============
> | > |
> | > | "Fred" <(E-Mail Removed)> wrote in message
> | > | news:(E-Mail Removed)...
> | > | > "None of your pages have the body tag borders set to 0" Could some
> | > kind
> | > | > person inform me how I set up body tags? Fred
> | > | >
> | > | >
> | > | >
> | > |
> | > |
> | >
> | >
> |
> |
>
>



 
Reply With Quote
 
Fred
Guest
Posts: n/a
 
      2nd Aug 2005
Hi all, I asked the question about body tags as I had received this answer
earlier but couldn't find anything about then in the help section. The page
I'm having problems on is at
http://www.heart-of-england-cat-club...ers%20list.htm and it's the
INNER left margin - between the left-hand border and the members details
that I'm trying to adjust. It looks ok in page view and preview but when
published the margin (gap-space) disappears. Any help in plain English would
be most welcome. Thanks for the easy to follow instructions Murray, even a
novice like me could follow these. Fred


"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Here's how to set margins -
>
> Link to an external stylesheet, or embed a stylesheet in your code
> (between <head> and </head>) with the following style in it (embedded
> shown for cut-n-paste convenience) (assuming you want zero margins) -
>
> <style type="text/css">
> <!--
> body { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
> padding:0; }
> -->
> </style>
> (when the value is zero, units are not required)
>
> you could also try
>
> body { margin: 0 0 0 0; padding:0; }
>
> or
>
> body { margin: 0; padding:0; }
>
> as a shorthand method.
>
> This will take care of the margins in IE4+ and NN6+.
>
> To get completely valid code that works for all
> browsers, change your stylesheet as shown below -
>
> body {
> padding: 0;
> margin: 0 -10px 0 -10px;
> /*/*/margin: 0 0 0 0; /* */
> }
> (this is called a CSS "hack" - the bottom line is not read by NN4x)
>
>
> --
> Murray
> ============
>
> "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> Yes, I believe it was about margins.
>> --
>> ===
>> Tom "Pepper" Willett
>> Microsoft MVP - FrontPage
>> ---
>> About FrontPage 2003:
>> http://office.microsoft.com/home/off...tid=FX01085802
>> How to ask a newsgroup question:
>> http://support.microsoft.com/kb/555375
>> ===
>> "Murray" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>> | Perhaps they meant margins?
>> |
>> | --
>> | Murray
>> | ============
>> |
>> | "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
>> | news:(E-Mail Removed)...
>> | > IIRC, he was told this in a previous (different) post.
>> | > --
>> | > ===
>> | > Tom "Pepper" Willett
>> | > Microsoft MVP - FrontPage
>> | > ---
>> | > About FrontPage 2003:
>> | > http://office.microsoft.com/home/off...tid=FX01085802
>> | > How to ask a newsgroup question:
>> | > http://support.microsoft.com/kb/555375
>> | > ===
>> | > "Murray" <(E-Mail Removed)> wrote in message
>> | > news:(E-Mail Removed)...
>> | > |> "None of your pages have the body tag borders set to 0"
>> | > |
>> | > | Where did you see that?
>> | > |
>> | > | --
>> | > | Murray
>> | > | ============
>> | > |
>> | > | "Fred" <(E-Mail Removed)> wrote in message
>> | > | news:(E-Mail Removed)...
>> | > | > "None of your pages have the body tag borders set to 0" Could
>> some
>> | > kind
>> | > | > person inform me how I set up body tags? Fred
>> | > | >
>> | > | >
>> | > | >
>> | > |
>> | > |
>> | >
>> | >
>> |
>> |
>>
>>

>
>



 
Reply With Quote
 
Ronx
Guest
Posts: n/a
 
      2nd Aug 2005
That gap is a 25px wide empty column in a table. IE normally displays
the gap, other browsers will collapse it.
To have control over this use include pages instead of shared borders,
and design your own layout.
It has nothing to do with margins.
--
Ron Symonds
Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

"Fred" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi all, I asked the question about body tags as I had received this
> answer earlier but couldn't find anything about then in the help
> section. The page I'm having problems on is at
> http://www.heart-of-england-cat-club...ers%20list.htm and
> it's the INNER left margin - between the left-hand border and the
> members details that I'm trying to adjust. It looks ok in page view
> and preview but when published the margin (gap-space) disappears.
> Any help in plain English would be most welcome. Thanks for the easy
> to follow instructions Murray, even a novice like me could follow
> these. Fred
>
>
> "Murray" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Here's how to set margins -
>>
>> Link to an external stylesheet, or embed a stylesheet in your code
>> (between <head> and </head>) with the following style in it
>> (embedded shown for cut-n-paste convenience) (assuming you want
>> zero margins) -
>>
>> <style type="text/css">
>> <!--
>> body { margin-top: 0; margin-right: 0; margin-bottom: 0;
>> margin-left: 0; padding:0; }
>> -->
>> </style>
>> (when the value is zero, units are not required)
>>
>> you could also try
>>
>> body { margin: 0 0 0 0; padding:0; }
>>
>> or
>>
>> body { margin: 0; padding:0; }
>>
>> as a shorthand method.
>>
>> This will take care of the margins in IE4+ and NN6+.
>>
>> To get completely valid code that works for all
>> browsers, change your stylesheet as shown below -
>>
>> body {
>> padding: 0;
>> margin: 0 -10px 0 -10px;
>> /*/*/margin: 0 0 0 0; /* */
>> }
>> (this is called a CSS "hack" - the bottom line is not read by NN4x)
>>
>>
>> --
>> Murray
>> ============
>>
>> "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
>> news:%(E-Mail Removed)...
>>> Yes, I believe it was about margins.
>>> --
>>> ===
>>> Tom "Pepper" Willett
>>> Microsoft MVP - FrontPage
>>> ---
>>> About FrontPage 2003:
>>> http://office.microsoft.com/home/off...tid=FX01085802
>>> How to ask a newsgroup question:
>>> http://support.microsoft.com/kb/555375
>>> ===
>>> "Murray" <(E-Mail Removed)> wrote in message
>>> news:%(E-Mail Removed)...
>>> | Perhaps they meant margins?
>>> |
>>> | --
>>> | Murray
>>> | ============
>>> |
>>> | "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
>>> | news:(E-Mail Removed)...
>>> | > IIRC, he was told this in a previous (different) post.
>>> | > --
>>> | > ===
>>> | > Tom "Pepper" Willett
>>> | > Microsoft MVP - FrontPage
>>> | > ---
>>> | > About FrontPage 2003:
>>> | >
>>> http://office.microsoft.com/home/off...tid=FX01085802
>>> | > How to ask a newsgroup question:
>>> | > http://support.microsoft.com/kb/555375
>>> | > ===
>>> | > "Murray" <(E-Mail Removed)> wrote in message
>>> | > news:(E-Mail Removed)...
>>> | > |> "None of your pages have the body tag borders set to 0"
>>> | > |
>>> | > | Where did you see that?
>>> | > |
>>> | > | --
>>> | > | Murray
>>> | > | ============
>>> | > |
>>> | > | "Fred" <(E-Mail Removed)> wrote in message
>>> | > | news:(E-Mail Removed)...
>>> | > | > "None of your pages have the body tag borders set to 0"
>>> Could some
>>> | > kind
>>> | > | > person inform me how I set up body tags? Fred
>>> | > | >
>>> | > | >
>>> | > | >
>>> | > |
>>> | > |
>>> | >
>>> | >
>>> |
>>> |
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      2nd Aug 2005
Right click each of the pages for Page Properties - Advanced and set your margins to 0
(will require you to set Tools Page Options Authoring (browsers & schemas) to IE5+
- meant page margins not borders in my prior response

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"Fred" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
| Hi all, I asked the question about body tags as I had received this answer
| earlier but couldn't find anything about then in the help section. The page
| I'm having problems on is at
| http://www.heart-of-england-cat-club...ers%20list.htm and it's the
| INNER left margin - between the left-hand border and the members details
| that I'm trying to adjust. It looks ok in page view and preview but when
| published the margin (gap-space) disappears. Any help in plain English would
| be most welcome. Thanks for the easy to follow instructions Murray, even a
| novice like me could follow these. Fred
|
|
| "Murray" <(E-Mail Removed)> wrote in message
| news:(E-Mail Removed)...
| > Here's how to set margins -
| >
| > Link to an external stylesheet, or embed a stylesheet in your code
| > (between <head> and </head>) with the following style in it (embedded
| > shown for cut-n-paste convenience) (assuming you want zero margins) -
| >
| > <style type="text/css">
| > <!--
| > body { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
| > padding:0; }
| > -->
| > </style>
| > (when the value is zero, units are not required)
| >
| > you could also try
| >
| > body { margin: 0 0 0 0; padding:0; }
| >
| > or
| >
| > body { margin: 0; padding:0; }
| >
| > as a shorthand method.
| >
| > This will take care of the margins in IE4+ and NN6+.
| >
| > To get completely valid code that works for all
| > browsers, change your stylesheet as shown below -
| >
| > body {
| > padding: 0;
| > margin: 0 -10px 0 -10px;
| > /*/*/margin: 0 0 0 0; /* */
| > }
| > (this is called a CSS "hack" - the bottom line is not read by NN4x)
| >
| >
| > --
| > Murray
| > ============
| >
| > "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
| > news:%(E-Mail Removed)...
| >> Yes, I believe it was about margins.
| >> --
| >> ===
| >> Tom "Pepper" Willett
| >> Microsoft MVP - FrontPage
| >> ---
| >> About FrontPage 2003:
| >> http://office.microsoft.com/home/off...tid=FX01085802
| >> How to ask a newsgroup question:
| >> http://support.microsoft.com/kb/555375
| >> ===
| >> "Murray" <(E-Mail Removed)> wrote in message
| >> news:%(E-Mail Removed)...
| >> | Perhaps they meant margins?
| >> |
| >> | --
| >> | Murray
| >> | ============
| >> |
| >> | "Tom Pepper Willett" <(E-Mail Removed)> wrote in message
| >> | news:(E-Mail Removed)...
| >> | > IIRC, he was told this in a previous (different) post.
| >> | > --
| >> | > ===
| >> | > Tom "Pepper" Willett
| >> | > Microsoft MVP - FrontPage
| >> | > ---
| >> | > About FrontPage 2003:
| >> | > http://office.microsoft.com/home/off...tid=FX01085802
| >> | > How to ask a newsgroup question:
| >> | > http://support.microsoft.com/kb/555375
| >> | > ===
| >> | > "Murray" <(E-Mail Removed)> wrote in message
| >> | > news:(E-Mail Removed)...
| >> | > |> "None of your pages have the body tag borders set to 0"
| >> | > |
| >> | > | Where did you see that?
| >> | > |
| >> | > | --
| >> | > | Murray
| >> | > | ============
| >> | > |
| >> | > | "Fred" <(E-Mail Removed)> wrote in message
| >> | > | news:(E-Mail Removed)...
| >> | > | > "None of your pages have the body tag borders set to 0" Could
| >> some
| >> | > kind
| >> | > | > person inform me how I set up body tags? Fred
| >> | > | >
| >> | > | >
| >> | > | >
| >> | > |
| >> | > |
| >> | >
| >> | >
| >> |
| >> |
| >>
| >>
| >
| >
|
|


 
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
No <body> tags in HTML Steve H Microsoft Frontpage 2 14th Jan 2005 05:09 PM
Multiple <BODY> tags wipe out content Kim Floyde Microsoft Frontpage 1 14th Jul 2004 06:38 PM
BUG: Periods removed from img and a tags in msg body =?Utf-8?B?Sm9obiBCdWVsbA==?= Microsoft VB .NET 2 5th Mar 2004 12:36 AM
Duplicate Body Tags?? Why is this happening to me? =?Utf-8?B?Q2FyZXkgUGFya2Vy?= Microsoft Frontpage 2 16th Jan 2004 09:53 AM
looking again for answer to body tags combination Pam Microsoft Frontpage 4 25th Oct 2003 09:34 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:56 PM.