Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to find a way to center the logo + text. The image+text should be center vertically and horizontally.

I tried couple of things and now i have this html

<html>
<head>
<title>XXX</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
body {
    margin:50px 0px; padding:0px; /* Need to set body margin and padding to get consistency between browsers. */
    text-align:center; /* Hack for IE5/Win */
    }
#floater    {float:left; height:50%; margin-bottom:-120px;}

#Content {
    clear:both; 
    width:500px;
    margin:0px auto; /* Right and left margin widths set to "auto" */
    text-align:center; /* Counteract to IE5/Win Hack */
    padding:15px;

    height:240px; 
    position:relative;
    }
#text-center{
    text-align:center;
    font-family:Tahoma, Geneva, sans-serif
    }
</style>
</head>
<body>

<div id="Content">
<img src="logo_small.jpg" width="400" height="143">
<p id="text-center">Coming soon</p>
<p id="text-center">more text</a></p>
</div>

</body>
</html>

I don't know anything related to html/css

share|improve this question
add margin: 0px auto; in #text-center – uDaY Mar 24 '12 at 3:00
I want to align the logo/text to center of the page (vertically/horizontally). the thing you mentioned removed distance between 2 p tags. – Em Ae Mar 24 '12 at 3:04

2 Answers

up vote 1 down vote accepted

Here's what I came up with: http://jsfiddle.net/CMfEH/

I used a variant of what's descriped in Vertically Centering in CSS.

share|improve this answer

Vertically aligning content is typically a bad practice but can be achieved using EDIT: had to switch up some css...

#Content {
        margin: 0px auto;
        ...
        height: 100%;
        }
#subContent {
        position: absolute;
        top: 50%;
        height:240px; 
        margin-top: -120px;
        }

And creating a <div id="subContent"> div inside your Content parent div.

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.