Reputation: 7293
I have made a div of "alert box i am making". I can not position the text in the center of the title part. I have tried to add padding, and margins, but they do not work. http://jsfiddle.net/Hunter4854/9EPES/
Upvotes: 0
Views: 129
Reputation: 71908
Take the image out of the way with position: absolute
, then simply use text-align: center
to center the text: http://jsfiddle.net/9EPES/1/
Upvotes: 2