Reputation: 9
How can I position My site title to the center of the page? I have tried this:
#site-title{
display:inline-block!important;
max-width:74%;
margin: 0 auto;
}
but no hope. so How can I move my logo to the center? http://worldsocialnetworking.com/
Upvotes: 0
Views: 257
Reputation: 6694
To set your logo center put text-align: center;
in this line in your CSS:
#top {
padding-bottom: 5px;
position: relative;
text-align: center; // Add this for center the Logo
}
Upvotes: 1