Tagged: content width, iPad
Hi guys
on the website below, I want to increase the content width just for tablets to 100%.
It’s set to 90% now, and I have other settings for the mobile.
Thanks for your help
Nanchy
Hey Nancy
Please add following code to Quick CSS
@media only screen and (max-width: 1024px) and (min-width: 768px) {
.container {
width: 100% !important;
}}
Cheers!
Yigit
thanks!