Hi there,
Please carefully copy the code provided as the previous code did not work because the code you used it:
@media (max-width: 767px) {
. x-container.max.width.offset {
wisth: 100%
}
}
This will not work because there is an unecessary space in . x-container
and you placed wisth
instead of width.
It should be
@media (max-width: 767px) {
.single-post .x-container.width {
width: 100%;
}
}
You could try testing for a plugin conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.
Let us know how it goes!