Herrsocke
Herrsocke

Reputation: 262

problems with media queries on my website

I wrongly edited some code in css media queries a time ago and now on mobile devices the logo of my website look like this: enter image description here .

The url of my page is: SplashYourCash.com

I cant get it to back to fill out the right space, maybe someone of you has an idea?

much greetings, herrsocke

Upvotes: 1

Views: 64

Answers (2)

Mamun Morshed
Mamun Morshed

Reputation: 101

Try this at the bottom of your style.css file

@media all and (max-width: 380px) { 
        .logo {
            height: 62px;
        }
        .logo.logoshrink {
            height: 50px;
        }

        .navbar-toggle{
            margin-top:27px;
            margin-right:0;
        }
        .navbar-toggle.mt8{
            margin-top:8px;
        }

    } 

Upvotes: 1

If you add the following CSS to your mobile media-query:

.navbar-toggle {
    margin-right: 0; 
}

It should fix it.

Upvotes: 1

Related Questions