Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't get the featured articles in the side bar to line up properly (here). I'm trying to get them to look more like the ones on this site.

This is the CSS:

 #element2 {
    margin:0 auto;
    padding: 5px 0 0px 0px;
    color:#161514;
    font-family:helvetica, sans-serif, Arial;
    font-size: 13px;
    background: #c7c7c7;
    width: 295px;
    height: 60%;
    }
img.element {
    width:305px;
    position:relative;
    right:auto;
    left:auto;
    height:auto;
    overflow:hidden;
    border:1px solid #ccc;
    width:130px;
    height:100px;
    min-height:100px;
    border:0;
    margin:5px 0px 0px 0px;
    display: inline-block;
    }
p.element {
    position:relative;
    align:right;
    width:140px;
    height:100;
    min-height:100px;
    margin:5px 0px 0px 0px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 1pt;
    border:0;
    background:#c7c7c7;
    display: inline-block;
    } 

Any suggestions much appreciated.

Thank you,

Tara

PS: I'm using Chrome 10

share|improve this question
Sorry the code area looks a bit messed up - I don't know why this is... [Fixed now thanks @pekka] – Tara May 8 '11 at 17:12
no problem. There are two "quote" buttons in the editor, the right-hand one (marked {}) is for code. It will only add four spaces before each line, but no > – Pekka 웃 May 8 '11 at 17:16
@Pekka Oh, I see! Ok. Thanks – Tara May 8 '11 at 17:18

1 Answer

up vote 2 down vote accepted

you have messed too much with css.
delete p.element and img.element css rules and start styling again using this:

img.element {
    height: 100px;
    width: 130px;
   position: absolute;
}
p.element {
    height: 100px;
    margin-left: 130px;
    width: 140px;
}
share|improve this answer
Thank you @seler – Tara May 8 '11 at 17:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.