This Message Forum is no longer in use

Please use the new Bravenet Help Forums FOUND HERE

General Forum
This Forum is Locked
Author
Comment
Heading

Web Hosting · Blog · Guestbooks · Message Forums · Mailing Lists
Easiest Website Builder ever! · Build your own toolbar · Free Talking Character · Email Marketing
powered by a free webtools company bravenet.com


how to bring this to below ..?

Re: Heading

you have design your site that way

too many people design their sites and are not paying attention to the fact that the footer needs to be at bottom and the banners at top

especially if you have free hosting/free subdomain

you can't adjust where they go and more

But as said you designed your site so now you have to change and place your body so it is in between

the opening and closing body tags

Re: Heading

What "..." is trying to say is that you have a "body" tag termination in the wrong place.

A trimmed down version of your index page looks like the following. Notice the "body" tag terminator right after the "body" tag. This is telling the software that is inserting the advertisements that this is the end of your web page. So the software is inserting it right after the top ads.

Code:
<html>
<head>
<title> Welcome to Dorganic Bakery </title>
</head>
<body background = "graphics/bghome.jpg">
<span style="font-weight:bold;"></body></span>
<a name ="top"></a>
<table cellpadding="0" cellspacing="0" frame="0">
<!-- Body of your web page -->
</table>
</html>


The "body" tags should encompass the body of your web page. Adjust your web page code to look like the following and the advertisements you listed will move to the bottom of the page.

Code:
<html>
<head>
<title> Welcome to Dorganic Bakery </title>
</head>
<body background = "graphics/bghome.jpg">
<a name ="top"></a>
<table cellpadding="0" cellspacing="0" frame="0">
<!-- Body of your web page -->
</table>
<span style="font-weight:bold;"></body></span>
</html>


But that doesn't fix everything. The advertisement on the top is still going to push down your content, putting the other graphics in the wrong place. For example...

To fix that, move the background image from the "body" tag to the "table" definition. Then the background will be pushed down with the other graphics and everything will end up in the right place. The code for this change is listed below and here is a link to an example...

Code:
<html>
<head>
<title> Welcome to Dorganic Bakery </title>
</head>
<body>
<a name ="top"></a>
<span style="font-weight:bold;"><table cellpadding="0" cellspacing="0" frame="0" background="graphics/bghome.jpg"></span>
<!-- Body of your web page -->
</table>
</body>
</html>

Browser: Firefox, Netscape, Sea Monkey, Internet Explorer, .....

OS: Solaris (Sparc,x86), Linux, XP