Hi! By researching other posts I nearly have my mobile display perfect for my essential grid blog posts…
The only thing I can’t figure out is how to remove the 50px margin I have on desktop view for the title of the post.
Here’s my css:
@media (max-width: 480px) {
body .eg-jaime-mintun-blog-element-5 {
font-size: 16px !important;
line-height: 20px !important;
padding-left: 0 !important;
text-align: left;
}
.esg-cc .esg-center {
padding: 200px 0;
}
}
@media (max-width: 480px) {
body .eg-jaime-mintun-blog-element-1 {
font-size:20px!important;
line-height:22px!important;
margin-bottom:0px!important;
margin-left:0px!important;
}
}
Everything else is working except the margin-bottom and margin-left items. Please let me know how to edit my css so those work! Thanks!!