Tagged: x Author Posts March 20, 2017 at 7:55 pm #1414433 gshallardParticipant Hi Guys, I am using the below code to remove the column containers on mobile view. It is also removing however the padding on the nav bar. Can you please advise how to adjust to only target the body content below the nav bar and excluding the footer. https://www.affinityequineinsurance.com.au/equine-online-quote/ @media (max-width: 767px){ body .no-pm { padding:15px !important; margin:15px !important; } .x-container.max { max-width: 100%; width: 100%; } } Thank you! March 21, 2017 at 5:27 am #1414749 ThaiModerator Hi There, Please try with this CSS: @media (max-width: 767px){ body .no-pm { padding:15px !important; margin:15px !important; } .x-section .x-container.max { max-width: 100%; width: 100%; } } Hope it helps 🙂 Author Posts