--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"exlibris" <exli...@discussions.microsoft.com> wrote in message
news:95958394-E258-46D4...@microsoft.com...
The page in trouble is: http://www.bookplate.org/Current Issue/Items for
Sale.htm
--
Ex Libris
<style>
<!--
BODY {
MARGIN: 0px; OVERFLOW: hidden; WIDTH: 100%; HEIGHT: 100%
}
BODY {
MARGIN: 0px; FONT-FAMILY: arial,sans-serif
}
to
<style type="text/css">
<!--
BODY {
MARGIN: 0 15px; FONT-FAMILY: arial,sans-serif;
background: #003399;
}
html, body {height: 100%; margin-bottom: 1px;}
a:link {color: #3366cc; }
a:visited {color: #6699ff; }
Also Change:
<body BGCOLOR="#003399" LINK="#3366CC" VLINK="#6699FF" leftmargin="15">
to
<body>
This provides a 15px left/right margin, and ensures the presence of the
scroll bar and link colours in ALL browsers.
I suggest you give the CSS classes meaningful names, since what is there
will become a nightmare to maintain.
Is cP the same as Cp or cp or CP?
Also remove all spaces from folder and file names. Spaces break links in
some browsers, email clients and newsreaders.
--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"exlibris" <exli...@discussions.microsoft.com> wrote in message
news:2DE2A3BA-C129-4987...@microsoft.com...
--
Ron Symonds
Microsoft MVP (Expression)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"exlibris" <exli...@discussions.microsoft.com> wrote in message
news:F21C97EB-D95F-4BC9...@microsoft.com...
Change:
body{margin:3px 0 0} to body{margin:3px 8px 0}
There isn lots of CSS countermanding other CSS, such as
panel{position:absolute;top:0;left:0;z-index:2} over-ruled by
#panel{position:relative;float:none;width:100%}
and lots of styles that are not used in the page, such as
panel{position:absolute;top:0;left:0;z-index:2} over-ruled by
#panel{position:relative;float:none;width:100%}
Also, the space bar is not a layout tool - spaces do NOT have a fixed width,
so the layout will change from browser to browser, user to user. - look for
groups of which should be replaced by margins and/or padding.
There are several useless styles - valid, but useless. How does a browser
render "margin-bottom:.0001pt" 1pt is 1/72 of an inch, so this represents a
very, very small fraction of a pixel. Word adds a lot of styles that are
only useful when printing the page.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"RKellner" <RKel...@discussions.microsoft.com> wrote in message
news:4A921BB3-8AB6-44EE...@microsoft.com...
I only know the basics of Code View & mostly work in Design...I know it's
not the most reliable way to create a page, alas. Thanks again.
"Ronx" wrote:
> Yes - in line 35, delete:
> body{overflow:hidden}body{overflow:visible;margin:3px 8px 0}
>
> Change:
> body{margin:3px 0 0} to body{margin:3px 8px 0}
>
> There isn lots of CSS countermanding other CSS, such as
> panel{position:absolute;top:0;left:0;z-index:2} over-ruled by
> #panel{position:relative;float:none;width:100%}
>
> and lots of styles that are not used in the page, such as
> panel{position:absolute;top:0;left:0;z-index:2} over-ruled by
> #panel{position:relative;float:none;width:100%}
>
> Also, the space bar is not a layout tool - spaces do NOT have a fixed width,
> so the layout will change from browser to browser, user to user. - look for
> groups of which should be replaced by margins and/or padding.
Everything else on my site works but all the direction pages, which show
people how to get to various slot car venues, open in new windows (which is
fine) but have no scroll bars (which is not).
Here is a couple of examples:
http://www.bglawns.com/directions_Kingslynn.htm
http://www.bglawns.com/directions_pinewood.htm
Regds - Deane
The CSS can be re-written as:
<style type="text/css">
<!--
body {font-family: arial,helvetica,sans-serif; font-size: 13px; background:
#fff; color: #000; margin: 3px 8px 0; }
-->
</style>
Also remove the references to class="MsoNormal" - this class is not defined
and is a carry over from copy/paste from Word or other MS product.
The rest can be removed since it does not appear in the page.
/*.mapPanelStart {left: 29.32em; }
.mapPanelMarginEnd {margin-right: 29.32em; }
#map {clear: both; }
#map {margin-left: 8px; /*overflow: hidden;*/ border: 0px none; }
#map {position: relative; z-index: 1; background: #e5e3df; /*overflow:
hidden;*/ }
#map {position: relative; }
#map {margin-left: 0; margin-right: 0; left: 0; border: 1px solid
#979797; }*/
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp
Reply only to group - emails will be deleted unread.
"EAHORC" <EAH...@discussions.microsoft.com> wrote in message
news:018676F3-DD43-4288...@microsoft.com...