Logo Text

How can I change the text size of the logo text? On mobile phones the text ist too long and in two lines…
Thank you

Hello there,

I hope you are doing well today.

You can use the following CSS code to alter the mobile title font size by going to Appearance > Customize > Additional CSS and pasting it there.


/*Mobile Font Size*/
@media screen and (max-width: 500px)
body #header .bottom-header h1 {
    line-height: 44px;
    font-size: 30px;
}

Best Regards,
Support

Hi, thank you for fast answering.
Unfortunately it does not work.
Hope, I put the correct CSS in (first items of your code are not visiible in the grey window of your answer):

/Mobile Font Size/
@media screen and (max-width: 500px)
{
body #header .bottom-header h4 {
line-height: 44px;
font-size: 30px;
}
}

Page ist gabble.it

Hello there,

The previous CSS code would have only affected the mobile version of the website, did the code work on mobile?

Please try using this CSS code that would affect the desktop version of the site:


/*Font size change desktop*/
#header .bottom-header h1 {
    font-size: 70px;
}

Best Regards,
Support

Hi,

thanks a lot again for your fast help.

Unfortunately no change…

I added in a file, what I did in the CSS - to be sure I did no mistake…

Thanks again,
Stefan

Hello Stefan,

Please add the following code in Additional CSS to make the font smaller on mobile devices:

       @media screen and (max-width: 500px) { body #header .top-header .header-logo {
    font-size: 50px;
}
}

This should fix your issue! Please give it a go and let me know how it goes.

All the best,
Mihaela

Hi Mihaela,

sorry to say - no changes :frowning:

Greetings
Stefan

Dear Stefan,

Have you checked on mobile? Please make sure to clear your phone’s cache before.
I have just checked and it works on my end.

All the best,
Mihaela

Hi Mihaela,

solved - I tried on iPad in portrait mode - there I did not see it because of the 500px. So I had to take 800px - and tadaaaaa… It worked

Thank you and your colleges so much for the great support and the great theme!
Stefan

You’re most welcome, Stefan!
Glad to hear it worked.

Happy Holidays!
Mihaela