Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #791374

    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

    #791375

    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

    #791377

    Hey Jordan,

    Thanks! But I only want this on mobile

    #791379

    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

    #791381

    You rock, thanks man!

    If you got a chance, see my note in private content!

    • This reply was modified 7 years, 6 months ago by ccyran.
    #791385

    Hi,

    No problem. I will look into the additional issues as well.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.