Archived topic
footer (mobile site)
3 replies · Started by Anonymous on January 6, 2015
Hey there!
Just wondering if its possible to adjust the height of the footer size on the mobile version?
My footer is quite thin on the main site but when the mobile version kicks in it goes very thick.
Something like @media screen and (max-width: 768px) {
.site-footer {
height???
Thanks a lot!
Tristan
Hi Tristan,
The height of the footer is decided using padding.
So you could do something like:
@media screen and (max-width: 768px) {
.site-info {
padding: 10px 0;
}
}
Worked like a charm, thanks so much!
You're welcome :)