Search code examples
cssresponsive-designmedia-queries

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


Solution

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

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

    It should fix it.