Reputation: 262
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:
.
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
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
Reputation: 15457
If you add the following CSS
to your mobile media-query
:
.navbar-toggle {
margin-right: 0;
}
It should fix it.
Upvotes: 1