Hi,
would you give me a code to make disapear the sidebar on iPad portrait but not landscape, pls ?
http://www.newpointdeview.com
Hi Anton!
Please add following code to Quick CSS
@media only screen and (max-width: 769px) {
.content {
width: 100%!important;
border: none!important;
}
.sidebar {
display: none!important;
}}
Best regards,
Yigit
All right, thank you !
Just for your information, I’ve added ass well
@media only screen and (max-width: 769px) {.content .entry-content-wrapper {padding-right: 0px!important;}}
in order to have the same left and right margins
Resolved