How to make the footer aligned for my theme on mobile?

Hi,

How can i make it align on mobile

vertically so it look better.

url - www.portronics.com

1 Like

@Shivam97

Which things you would like to align with footer ?

Could you please elaborate?

1 Like

Social icons and Footer navigations link.

1 Like

@Shivam97

Please add the following code at the bottom of your assets/theme.css file.

@media only screen and (max-width: 768px){
.footer__social li {
    margin: 5px 4px 0 !important;
}
.site-footer__linklist a {
    padding: 5px 7px !important;
}
.inline-list{
margin-bottom: 30px;
}
}

Hope this works.

Thanks!

1 Like

Thanks it look better now!

1 Like