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.
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.
.slogan {
color:#143063;
font-size:18px;
**line-height:92px;** //Add this line without the asterisks(*)
margin:auto;
text-align:center;
width:50%;
}
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.
.classname{ width:800px; margin:0px auto; }
It may center to main div, here are different ways to center div http://www.templatespoint.com/blog/2009/06/how-to-center-main-div/