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

page I'm working with: http://jsbin.com/abewe4

I want the slogan div centered inside col3 div

I'm using

width: 50%; 
margin: auto;

on the inner div but still it is not working.

share|improve this question

4 Answers

up vote 1 down vote accepted
.slogan {
color:#143063;
font-size:18px;
**line-height:92px;** //Add this line without the asterisks(*)
margin:auto;
text-align:center;
width:50%;
}
share|improve this answer
that works thanks – samwick Oct 5 '10 at 3:31
Samwick a you should accept this as the answer then. You have a 60% accept ratio. Not horrible, but... – Moshe Oct 5 '10 at 3:33
I'm getting better mate. at the time of the comment I tried to accept the answer but jeff's logic said I still had to wait X minutes. So I went and took the trash out – samwick Oct 5 '10 at 3:43

You need to add ‘text-align: center‘ to col3.

share|improve this answer
that does not seem to work. tried w/ firebug – samwick Oct 5 '10 at 3:30
<style>
    .col3{
        display:table-cell;
        width:200px;height:200px;
        text-align:center;
        vertical-align:middle;
        border:1px solid blue;
    }

    .col3 .slogan{
        border:1px solid red;width:100px;height:100px;
        display:inline-block;
    }
</style>

<div class="col3">
    <div class="slogan">
    </div>
</div>

You can give any height or width to col3 or slogan the css will make it center align always

You can put any element inside slogan and it will be center aligned :)

share|improve this answer

I see that you have a div called col3 and a nested div classed slogan. Here is how I would do it.

#col3 {
   width: 100%;
   text-align: center;
}
.slogan {
   width: 600px;
   margin: 0px auto;
   text-align: left;
}

slogan should have a fixed width for the margin: 0px auto to center it.

share|improve this answer

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.