Let sidebar disappear on tablets

Hello,

I would like to ask if it is possible to have a full-width display for tablets up to 800px and remove the sidebar?

Best regards

Hi @opti8,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Travelify Other Options

@media only screen and (max-width: 800px){
#primary {
    width: 100%;
}
#secondary{
	display: none;
}
}

Best Regards,
Movin