Narrative theme, increasing footer size for mobile.

On my narrative theme, I have both chat and rewards buttons, however, they are covering the payment methods on the footer, I want to increase the height of the footer but I cannot find in the code site-footer__content to be able to input a : height 150px or whatever height I need. Please give me a clue how to do this, it’s more important for the mobile version thanks.

www.menudogg.com

Hi @RobFurness ,

Go to Assets > theme.scss.liquid and paste this at the bottom of the file:

@media only screen and (max-width: 749px) { 
	.site-footer {
		padding-bottom: 170px;
	}
}

Hope it helps!

Thanks very much that worked perfectly!!! really appreciated