How to style the header text in collections page with CSS? I want adjust the side margins and font size according to mobile view.
Page URL: https://katharos.co.in/collections/aromadiffusercombo
How to style the header text in collections page with CSS? I want adjust the side margins and font size according to mobile view.
Page URL: https://katharos.co.in/collections/aromadiffusercombo
Hi @ishaankatharos ,
Try this one.
@media only screen and (max-width: 720px){
.section__inner.rich-text__inner {
margin-left: 10px;
margin-right: 10px;
}
h2.rich-text__heading.ff-heading.fs-heading-2-base.fs-heading-1-base-ns {
font-size: 30px;
}
}
Result:
I hope it help.