Problems with mobile headlines and team section

Hi,
I have problems with headlines on mobile. Sizes should be smaller. And my team section looks bad on mobile too. What i can do?

-Anne

May I take a look?
Please provide a link to your website and I will check it

Hello Anne

Which title you want to be smaller on mobile screens? I need a reference

team section can be fixed by this css code:

@media only screen and (max-width: 992px){
    #team .section-content .person .person-content {
        width: 100%;
    }
}

Thank you for this code. It solved my team section problem.
Jumbotron Header looks weird on mobile and testimonials section title (AJANKOHTAISTA) should be smaller on mobile.

-Anne

Hi Anne

This is how it looks for me: Screenshot by Lightshot
It’s not weird for me, can you please clarify?

This is Jumbotron and that looks same on my mobile Screenshot by Lightshot.
The other looks good on my mobile but the screen looks like this: Screenshot by Lightshot

-Anne

Ok, got it, :slight_smile:

You may use this code to fix it:

@media only screen and (max-width: 992px){
.section-header h3 {
font-size: 20px;
}
}