I see that the stylesheet and markup on the imported page (featured-product.html):
Code:
<style type="text/css">
body
{margin: 0;
background-color: #fff;}
div.main
{margin: 0 auto;
width: 800px;
border: 7px solid #000;
border-top: 0;
background-color: #fff;}
fieldset {border: 3px double #000000; font-size: 14px; font-family: Verdana; padding: 9px; margin: 44px 44px 0 44px;}
legend {color: #417443; font-size: 22px; font-weight: bold; font-style: italic; margin-bottom: 5px; margin-left: 17px;}
h1, h2 {color: #417443; text-align: center; margin-top: 35px;}
.shadow
{-webkit-box-shadow: #3E3E3E 5px 5px 12px;
-moz-box-shadow: #3E3E3E 5px 5px 12px;
box-shadow: #909090 5px 5px 12px;}
.center {text-align: center; display: block; margin: 35px auto;}
</style>
</head>
<body>
<div class="main">
uses/addresses the same structure as used on the 'top' page (newsletter1.html):
Code:
. . . /login.jpg" width="109" height="28" border="0" alt="Log in to the webmaster's member area."></a>
</td></tr></table>
<p>
<table width="100%" style="max-width: 1400px;"><tr>
<td width="70%" valign="top">
<div class="main">
<img src="images/aan2.jpg" width="408" . . .
but the styles are different. There could be other issues with this or in general, but the main issue that jumps out is this div.main style. What I would do is on the imported page use a different class:
Code:
<style type="text/css">
body
{margin: 0;
background-color: #fff;}
div.main2
{margin: 0 auto;
width: 800px;
border: 7px solid #000;
border-top: 0;
background-color: #fff;}
fieldset {border: 3px double #000000; font-size: 14px; font-family: Verdana; padding: 9px; margin: 44px 44px 0 44px;}
legend {color: #417443; font-size: 22px; font-weight: bold; font-style: italic; margin-bottom: 5px; margin-left: 17px;}
h1, h2 {color: #417443; text-align: center; margin-top: 35px;}
.shadow
{-webkit-box-shadow: #3E3E3E 5px 5px 12px;
-moz-box-shadow: #3E3E3E 5px 5px 12px;
box-shadow: #909090 5px 5px 12px;}
.center {text-align: center; display: block; margin: 35px auto;}
</style>
</head>
<body>
<div class="main2">
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks