Jeff Dowell
Jeff Dowell

Reputation: 125

How can I center my logo for my mobile site?

I’m trying to horizontally center my logo on for my mobile version of my site. I can’t get it to center, though. I’ve tried various things but nothing seems to move it.

My code is:

    @media only screen and (max-width: 640px) { .logo-image .logo img { 
    max-height: 70px;
    margin-top: -15px;
    margin-bottom: 15px;
    width: auto;
    background: center;
}
}

Upvotes: 0

Views: 2510

Answers (1)

Srikanth AD
Srikanth AD

Reputation: 1854

For h1.logo try text-align:center;

Upvotes: 1

Related Questions