Yeah, i coded it myself in divs. But it's messed up so i need someone to recode it. PM me if your willing to do it.
Moved by LucasAge (Forum Super Moderator) from Designing and Development: Please post in the correct forum.
Printable View
Yeah, i coded it myself in divs. But it's messed up so i need someone to recode it. PM me if your willing to do it.
Moved by LucasAge (Forum Super Moderator) from Designing and Development: Please post in the correct forum.
bumpage.
Edited by Hitman (Forum Moderator): Please don't double post, unless you're adding more information to the post above and can't edit.
Link to the page? I'll tell you what you've done wrong.
http://habbofury2.freehostia.com/
When ever i type in the main content, the boxes on the side go down.
Is this a free request?
You just made it expandable when it's not meant to be.
You can make it expandable.
Lol try this
ALSO: did you make sure that you took 12px from your width as you've added 12px padding?HTML Code:#content2 {
width: 434px;
margin-top: 14px;
padding: 12px;
margin-left: -12px;
background-image: url(images/content_mid.PNG);
background-repeat: repeat-y;
Oh, I didn't want anything.
So you'll code it?
Okay add this in your divs.
And stick all the divs you want to go in the middle under there.HTML Code:#contentbox {
width: 434px;
float: left;
}
(it acts as a container)
So:
<div id="contentbox">
<div id="middletop"></div>
<div id="middlemiddle">blugggghhh</div>
<div id="bottommiddle"></div>
ok, make a box for the left side, middle and right side and then make these all float left. make sure the widths all add up to 950px and it should work
Add that into a style sheet.
Add
To your stylesheet and add:HTML Code:#contentbox {
width: 434px;
float: left;
}
To your div tags, but obviously change the middletop, middlemidle, and bottommiddle to the names of your middle divs.HTML Code:<div id="contentbox">
<div id="middletop"></div>
<div id="middlemiddle">blugggghhh</div>
<div id="bottommiddle"></div>
luke you forgot to end your content box div
<div id="contentbox">
<div id="middletop"></div>
<div id="middlemiddle">blugggghhh</div>
<div id="bottommiddle"></div>
</div>