• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

How to Put a Top Header or a Footer Spanning Both Columns on a 2 Column Site

dan123

New member
Some sites have a top header spanning both columns. They may either place the site's logo or name here, or, perhaps even banner advertisements or both. In the same way, some sites also include a footer that span both columns. Among other things, the footer may be used for things like copyright notices.

To use a header and footer using this 2-column layout, modify your HTML code as follows.

<div id="layout">
<div id="header">Top Header</div>
<div id="navbar">Navigation</div>
<div id="content">Content here</div>
<div id="footer">Bottom Footer</div>
</div>

Add the following CSS code to [URL REMOVED] Website Development[/url] existing style sheet. Simply place it after the styles you created above.

#footer {
clear: all ;
}

If you want the text in your header to be centred, add the following. Otherwise, there's no need to define a header style.

#header {
text-align: center ;
}

The same text-align property can be added to the footer to centre the text there as well, if you wish.
 
Last edited by a moderator:
Please explain the purpose of this post. Without some context, I sure don't get it.
 
I know what he is talking about. To put it in AB export terms, for the header, type the HTML code you want into the place where it says HTML header. For websites, I normally have background music, so I put <embed src="mymidi.mid" hidden=true loop=true>
As for the body tag attributes, I don't use anything unless I want to make a page with a background picture. Finally, the footer is used if you want to add a picture of your army or a copyright to the list so that people can't put it on their websites with out your permission.
 
This looks like spam; I think he's just trying to get the URL for the web site onto as many sites as possible, so google will think it's being linked to a lot. I've edited out the URL and sent a message checking to see if he's a real person or not.
 
Back
Top