Shop Forums WordPress Themes How to change text on header Reply To: How to change text on header

#9486
Adnan Shawkat
Keymaster

Hi there,

In this case you’ve to do some tricks you know. Here’s the code that you need to use on your custom css instead of overriding


.banner-info h2 {
    font-size: 90px;
}
@media (min-width: 768px) and (max-width: 991px) {
    .banner-info h2 {
        font-size: 65px;
        line-height: 65px;
    }	
}

This way it won’t break the styles or so. Hopefully this would help you fix the issue you’re having.

Regards