Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install this plugin: http://wordpress.org/plugins/custom-css-manager-plugin
Then in that plugin’s section of the dashboard add this:
@media screen and ( min-width: 600px ) {
.page-id-6 #primary {
max-width: 952px;
}
.page-id-6 #primary,
.page-id-6 .hentry {
width: auto;
}
}
Hi Andrew
Thanks for quick reply, I did what you tell but looks like this did not help…i dont see any changes not on my ipad anyway , I will check on computer in the morning.
Thanks
Hi Andrew
it is working in Safari on normal computer…
thanks
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In that case try reducing the “min-width” value in the media query, to say, 320px. E.g,
@media screen and ( min-width: 320px ) {
.page-id-6 #primary {
max-width: 952px;
}
.page-id-6 #primary,
.page-id-6 .hentry {
width: auto;
}
}