Mobile Media Queries for Headlines

Hey there,

I designed a new website for a customer.

I have one problem I cannot fix:

I want to set Media Queries for mobile Display (max-width: 767px). I did some CSS but it doesnt work.
Where is the mistake? Or what did I do wrong? The elements to optimize have css-class .h-mobile

The CSS Code I am using:
@media (max-width: 767px) {
.h-mobile { font-size: 16px!important;
}
}

Summary

Here is the link to the Site:
https://business-class-hotel.de

Thanks for help
Andy

Hello Andy,

Thanks for writing in!

There’s syntax error in the code that’s shared in Ticket. Please update the code with following code:

@media (max-width: 767px) {
.h-mobile { font-size: 16px !important;
}
}

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.