Tagged: Blog
Hi
I am using a blog post element and i want to set the width of each blog as 100% on mobile. I tried this code but it is not working.
@media only screen and (max-width: 767px)
.responsive #top #wrap_all .slide-entry {
width: 100%;
margin-left: 4%;
text-align: center;
}
Hey mritkuma99,
You are missing an opening {
Try this code:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all .slide-entry {
width: 100%;
text-align: center;
}
}
If you need further assistance please let us know.
Best regards,
Victoria