font size in mobile version

Hello everybody,

I want to write a word with a quiet big fontsize on the startside (about 100) on the desktopversion. When I switch to the mobile version,
I just can see a part of the word, because the fontsize is too big. Is there a way, to make tho fontsize smaller automatically, but just in the mobile version?

Best regards, Hubert 

Comments

  • You have to write custom CSS in order for this to work.
    It will look like this.

    @media (max-width:767px) {
    .big-text {font-size:20px;)
    } }
    Add a class, any you want to this text, then place it in the media query. It will change its size when it goes to mobile version.
Sign In or Register to comment.