You can remove them using media queries in kelo-child/style.css
COPY CODE
@media screen and (max-width: 480px) {
.article-meta {
display: none;
}
.article-media {
margin-left: 0;
}
.article-content {
margin-left: 0;
}
}
I would like to keep the meta on my site, but also dont like the meta info taking up the entire left hand side on phones. So, what I plan on doing is something like this.
COPY CODE
@media screen and (max-width: 480px) {
.article-media {
clear: left;
margin-left: 0;
}
.article-content {
margin-left: 0;
}
}
That will move the article-media below the meta and utilize the entire width of the screen for media and content.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution