HELP! whitespaces on layout

viperxx

New Member
Messages
23
Reaction score
0
Points
0


ask you can see, there is a white spot on the right and bottom
using internet explorer i can see that there is always a spot on the right hand side
but however the bottom space is there on every browser i tested

Code:
<style type="text/css">
#right {
    width: 150px;
    float: right;
    margin-right: 35px;
    }
#header {
    margin-right: 25px;
    margin-left: 25px;
    margin-top: 0px;
    margin-bottom: 0px;
    background-repeat: repeat-x;
    height: 250px;
}
#main {
    margin-right: 195px;
    margin-left: 35px;

}
#container {
    width: 100%;
    float: left;
    margin-right: -185px;
        
    }
#footer {
    background-image: url(img/greenlush/footer.png);
    background-repeat: repeat-x;
    height: 39px;
    margin-right: 25px;
    margin-left: 25px;
    margin-bottom: 0px;
    text-align: center;
    padding-top: 9px;
}
#punfooter {
    margin-right: 35px;
    margin-left: 35px;
}
body {
    background-image: url(img/greenlush/bg.png);
    background-repeat: repeat;
}
</style>
 
Last edited:

ZeptOr

New Member
Messages
442
Reaction score
0
Points
0
I don't get it, I don't see any white spots on that picture, unless you mean that vertical white bar on the right hand side?

btw I like your design, nice colors
 

viperxx

New Member
Messages
23
Reaction score
0
Points
0
ZeptOr said:
I don't get it, I don't see any white spots on that picture, unless you mean that vertical white bar on the right hand side?

btw I like your design, nice colors

ya thats what i meant

thanks for the comment btw ;)
 

Colin

Active Member
Messages
1,984
Reaction score
0
Points
36
I don't know which elements correspond with what exactly, but I think it would be your margin-rights, it seems that all your elements have them and you just moved them over a little too much.

EDIT: Do you have an actual link I could see?
 
Last edited:

Cubeform

New Member
Messages
339
Reaction score
0
Points
0
I found this code:
Code:
#footer {
	background-image: url(img/greenlush/footer.png);
	background-repeat: repeat-x;
	height: 39px;
	margin-right: 25px;
	margin-left: 25px;
	margin-bottom: 0px;
	text-align: center;
	padding-top: 9px;
}
See the padding-top attribute? Remove it. That'll fix your footer.
 
Last edited:

viperxx

New Member
Messages
23
Reaction score
0
Points
0
THANK YOU!! :drool:
didnt know that could cause the problem

now the strange IE problem
 
Last edited:

ZeptOr

New Member
Messages
442
Reaction score
0
Points
0
heh, you play maplestory?

I use to, got bored of it, but I am thinking about starting to play again
 

viperxx

New Member
Messages
23
Reaction score
0
Points
0
i used to play, just made the site for my sister's guild

btw, i fixed the problem! had to add " display: inline; "
thanks much for the help :)
 

Chris Z

Active Member
Messages
5,603
Reaction score
0
Points
36
wow, well this is sorta offtopic, but i'm diggin that skin, it looks like vBulletin :) 10/10!
 
Top