Footer blocks spacing on mobile
Hello,
how could I increase the spacing between the copyright and the social icons blocks on mobile?
The website is https://vcgmotion.com/
Thanks!
Hello,
how could I increase the spacing between the copyright and the social icons blocks on mobile?
The website is https://vcgmotion.com/
Thanks!
Comments
Hi,
Please, use the following CSS code:
@media only screen and (max-width:767px){ #Footer .copyright{ margin-bottom: 30px!important; } }Thanks
Thanks!
Any way to hide the social icons block on mobile completely?
For that you can use this CSS:
@media only screen and (max-width:767px){ #Footer .social{ display: none; } }Thanks
Thanks!