Ronaldo
Ronaldo

Reputation: 367

footer green border on android browser

When I open my site http://www.gestaoeventos.com on Defy (Android 2.1 update 1 Browser version 7) there is a strange green border on my footer and a retangular yellow box on bottom left side. Do you know what this means?

Upvotes: 0

Views: 224

Answers (1)

Binyamin
Binyamin

Reputation: 7803

In your HTML head you have defined Mobile.css for media query screen and (max-device-width: 480px). What means: apply Mobile.css styling on device with screen width smaller than 480px.

You can fix your issues on removing border and background-color properties from Mobile.css:

#rodape {
    border: 3px solid green;
}
#rodape2 {
    background-color: yellow;
}

Good luck, Ronaldo!

Upvotes: 2

Related Questions