I'm pretty sure the problem is that you are displaying a whole page in that contentjs div.
http://febc.convio.net/site/PageServ..._giftcatalog_2
The pages you request should just have just the content you want displayed in the div.
Say you have
Code:
<html>
<head>
</head>
<body>
<div id="contentjs">
</div>
</body>
</html>
If you pull in another page containing
Code:
<html>
<head>
</head>
<body>
this is the content you need
</body>
</html>
You get
Code:
<html>
<head>
</head>
<body>
<div id="contentjs">
<html>
<head>
</head>
<body>
<div id="contentjs">
this is the content you need
</div>
</body>
</html>
</div>
</body>
</html>
Where as what you wanted is
Code:
<html>
<head>
</head>
<body>
<div id="contentjs">
this is the content you need
</div>
</body>
</html>
So to do that you have your file containing the raw code and have the styling already on that page. This is best done with a server side code because you can use conditional to state what to display but you can do it with plain text.
Bookmarks