thanks a lot.
well since i already got this bugger open. might as well post something else.
i'm struggling through trying to get my greymatter pages stylized. (very annoying because i have to go back and forth between the templates within greymatter admin and the external css's i'm trying to use.
anyway. during my edits, i sometimes, for no reason at all (;p) affect pages i don't want to mess with.
long story short. could i get help figuring out why IE adds extra space below the persons blog entry?
http://www.legionofangels.net/
scroll down in the entry titled "the fathers love: genesis to revelation". and in IE, you'll have this grey space at the bottom.
i've checked all my styles. and here are all the styles invovled in the creation of that box.
Quote:
|
Originally Posted by this is one of the containers #blog {
border: 0px dotted red;
position:relative;
left: 0px; top:0px;
overflow-x: hidden;overflow-y: auto;
height:501px;width:399px;
font-family: palatino linotype;
font-size: 11px;
line-height: 18px;
background-color: #808080;
margin:0px;
padding:0px;
} |
Quote:
|
Originally Posted by these are the styles that make up the entry itself. #title {
line-height:225%;
border-bottom:2px solid black;
border-top:2px solid black;
padding:0px;
margin:0px;
float:left;
width:386px;
background-color:#000000;
color:white;
}
#avatar {
border-right:2px solid black;
width:100px;height:100px;
margin:0px;
padding:0px;
float:left;
background-color:#000000;
overflow:hidden
}
#author {
width:280px;height:100px;
margin:0px;
padding:0px;
font-family: palatino linotype;
font-size: 16px;
float:left;
background-color:#808080;
}
#actualentry {
border-top:2px solid black;
margin:0px;
padding:0px;
float:left;
width:386px;
background-color:white;
height:auto;
} |
since the color that shows up at the bottom is grey. i did a search for all instances of that color. only two showed up. the "author" style should have it. but the "blog" was the workaround i did because of my previous problem. (above)
to explain the workaround....
avatar and author should be next to eachother. avatar+workaround make up maybe 380 pixels. the blog container itself is 399. but for some reason if i go just ONE PIXEL higher than 380 the divs break up and "author" moves to the next line. i struggled with this and gave up and simply said (well, i could just keep it at 380 total, and fill in the white on the right side with grey by using blog.
well now i'm paying for it. -_-
regardless, that space shouldn't be there anyway! and the div is not empty and there are no images so i can't understand why it adds the space. so yah. that's where i'm stuck sadly.
heres the html for the part in question too just in case.
Quote:
<div id="centerbox">
<div id="blog"><?php include('http://www.legionofangels.net/gm'); ?></div>
</div>
|
thanks in advanced.