Hello peepols,
So... I have an issue. Here is a partial screenshot of my blog:
The text area contained within the red boundary is currently 400px, but I would like it wider. Ideally I'd like it expanded to something like the green area. The 'content' part of the style sheet reads:
Code:
/* Content */
#content {
width: 545px;
padding-left: 59px;
_padding-left: 40px;
float: left;
}
.post {
width: 500px;
margin: 12px 0;
position: relative;
}
.post h2 {
font-size: 1.6em;
font-family: Arial, Helvetica, sans-serif;
padding-bottom: 5px;
border-bottom: 1px solid #2c1200;
}
.post h2 a {
color: #525252;
}
.postmetadata {
padding: 2px 8px 0 0;
display: block;
text-align: right;
color: #485561;
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
}
.postmetadata a {
text-decoration: underline;
}
.postmetadata a:hover {
text-decoration: none;
}
.post_date {
width: 59px;
height: 44px;
position: absolute;
top: 0;
left: -61px;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
line-height: 30px;
text-align: center;
font-weight: bold;
font-size: 1.2em;
background: url(images/date_bg.jpg) no-repeat;
}
.entry {
width: 400px;
overflow: hidden;
padding: 0px 0 0 10px;
font-size: 1.2em;
font-family: Verdana, Arial, Helvetica, sans-serif;
line-height: 20px;
}
If I change the part that reads:
Code:
.entry {
width: 400px;
overflow: hidden;
padding: 0px 0 0 10px;
font-size: 1.2em;
font-family: Verdana, Arial, Helvetica, sans-serif;
line-height: 20px;
}
so that the width reads 500px, it occupies the area within the dark purple dotted box in the top picture. I'd really like the post to sit under where the tab for the date is, rather than to the side of it, but I just can't figure out how to do this!
Here is the full CSS text:
Attachment:
mimi_css.rtf
(I had to post it as a rtf to get the file uploader to accept it). Is there anyone who can see what I cannot? It is the only thing I have had issue with.