Hey guys,
Is there CSS to shrink the text I have on the homepage of my website?
Specifically, this text: Chris “Big Taco” Cyran is an Art Director based in New York. Currently working at R/GA, probably liking every meme on Instagram.
website: ccyran.com
Thanks!
Chris
Hey ccyran,
Add the following to quick css:
.post-entry.post-entry-type-page.post-entry-2890 h1 span{
font-size:10px!important;
}
.post-entry.post-entry-type-page.post-entry-2890 h1{
line-height:.5em!important;
}
Best regards,
Jordan Shannon
Hey Jordan,
Thanks! But I only want this on mobile
Hi,
Use the adjustment below:
@media only screen and (max-width: 767px) {
.post-entry.post-entry-type-page.post-entry-2890 h1 span{
font-size:10px!important;
}
.post-entry.post-entry-type-page.post-entry-2890 h1{
line-height:.5em!important;
}
}
Best regards,
Jordan Shannon
You rock, thanks man!
If you got a chance, see my note in private content!
Hi,
No problem. I will look into the additional issues as well.
Best regards,
Jordan Shannon