What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » HTML Help Please

HTML Help Please
Author: Message:
stu
Junior Member
**

Avatar
Stu

Posts: 82
Reputation: 1
38 / Male / Flag
Joined: Sep 2004
RE: HTML Help Please
If you want the top banner to stay the same as the middle part, you will have to position the top banner absolutely, like you have for the middle part..
code:
<div id="text" style="position:absolute; left:125px; top:250px; width:1005px; height:420px; z-index:4; background-color: #0066FF; layer-background-color: #0066FF; border: 1px none #000000;">
Otherwise when the page resizes, the banner will move, but the middle wont, which from what I can tell is the problem you are referring to..

If you want the middle part to move like the banner, you can just align the middle to center, like you did for the banner..
code:
<div id="banner" align="center">

Or, you can get rid of that all together, and center everything on the page using css.. for that, there is basically 2 steps (your content all goes inside the container div)
code:
body {
margin: 0px;
text-align: center;
}

#container {
margin: 0 auto;
text-align: left;
width: 900px;
}

And might I sugest using a smaller width, it is quite large if you want to be resizing the page.. Anyways, hope that helps

This post was edited on 10-21-2007 at 02:23 AM by stu.
10-21-2007 02:23 AM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
HTML Help Please - by Mentality on 10-20-2007 at 11:03 PM
RE: HTML Help Please - by NanaFreak on 10-20-2007 at 11:51 PM
RE: HTML Help Please - by Mentality on 10-21-2007 at 01:32 AM
RE: HTML Help Please - by stu on 10-21-2007 at 02:23 AM
RE: HTML Help Please - by NanaFreak on 10-21-2007 at 04:24 AM
RE: HTML Help Please - by Mentality on 10-21-2007 at 10:52 AM
RE: HTML Help Please - by NanaFreak on 10-21-2007 at 11:09 AM
RE: HTML Help Please - by Mentality on 10-21-2007 at 03:22 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On