Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #817932

    Hi,
    On my homepage, I have a section called “PERMANENT INSTALLATIONS”. On desktop the font size looks great but on mobile, I would like to make those same words smaller. I have tried the following code

    QUICK CSS
    @media only screen and (max-width: 480px) {
    .homepage-permanent h1 { font-size: 16px

    For Developers: Section ID
    homepage-permanent

    However, it is not changing on mobile. What am I doing wrong? Please help

    #817973

    Hey navindesigns,

    Use this instead:

    	@media only screen and (max-width: 767px) {
    #homepage-permanent h1 { font-size: 16px!important;}
    }

    homepage-permanent is an id(#) not a class.

    Best regards,
    Jordan Shannon

    #817993

    Ah that you so much! that works

    #817996

    We’re glad that Jordan was able to help! :) If you have any other questions or issues, feel free to post them here on the forum and we will try our best to assist you.

    Thank you for using Enfold.

    Cheers!
    Sarah

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Make H1 font smaller in just one location’ is closed to new replies.