Any ideas?
Hey crewneck!
Thank you for coming back.
Try the following:
#footer {
max-height: 50px !important;
}
I think it was caused by the backgriund image, which is only 50px high
Regards,
Günter
Hey Günter!
Great! That CSS removed the border on large screens. But the border is still visible on mobile devices and my ipad.
Any clues?
Hey!
Try this:
@media only screen and (max-width: 959px) {
#footer {
max-height: 80px !important;
margin-bottom: -2px;
}
}
By the way, there are great resources around the web for learning CSS, like here: http://www.w3schools.com/
Regards,
Rikard
Thanks Rikard! That seems to work.