Hi is there a way to change the footer size in Palo Alto Theme? My current footer is taking half of the page. My shop URL is https://stoned-and-co-online.myshopify.com/
1 Like
hello @Lanchaster_91
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
.site-footer {
padding: 12px 0px ;
}
@Lanchaster_91 ,
Add this code at the bottom of your theme.css file.
@media only screen and (min-width: 768px){
.footer-bottom {
margin-top: 5px;
}
}
1 Like
please Go to Online Store->Theme->Edit code then go to assets/theme.css ->paste below code at the bottom of the file.
@media only screen and (min-width: 768px){
.footer-bottom wrapper .social-sharing-wrapper {
margin-top: 5px !important ;
}
}
Hi Natztech,
Great! thank you for your help I manage to shrink the footer now.
Possible to reduce the space between the logo and about us?
Add this, Good Luck!
You can reduce more gap by changing 15 to lower values.
@media only screen and (min-width: 768px){
.footer-content__logo {
margin-bottom: 15px;
}
}
thank you for your help.