-
-
Hello,
I would like to change the font size and, if necessary, the arrangement of the headline in the mobile version of the header, as the display does not look good this way. How can I do that. -
Hi,
This can be done easily with a custom css code.
I can send you if you give me a URL to check this.
this is an example of mobile editing css
@media (max-width:767px){ .{class of an element that will change} { font-size:20px; } }
-
Hello,
The Domain is https://vcp-rps.de
Could you take a look at which element to use here? It’s about the page headers in the header of each page. Thank you.
-
Check this:
@media (max-width:767px){ .header_page.normal h1{ font-size:14px; } }
-
Hello
I inserted the code, but unfortunately it did not work. The headline on the phone is still too big. -
Hello,
Thank you very much, that helped in the first step already. But unfortunately the letters are still too close together when the font size is chosen so small. Is it possible to adjust something in the code? -
Hello,
You have to add the line-height:
@media (max-width:767px){ .header_page.with_subtitle.centered .titles h1{ font-size:14px !important; line-height:35px; } }
Let us know.
Regards!
-
Unfortunately, that didn’t help. The letters are still too close together. With longer subheadings, the heading and subheading also merge into each other.
-
Maybe you need to fix letter-spacing?
@media (max-width:767px){ .header_page.with_subtitle.centered .titles h1{ font-size:14px !important; line-height:35px; letter-spacing: 2px !important; } }
-
Good morning,
The evening between the letters has thus been corrected. Thank you. Unfortunately, however, the heading and subheading are still in each other instead of under each other. -
On css/bootstrap-responsive.css
I see these lines starting at 1333:
@media (max-width: 480px) .header_page.centered h1 { line-height: 50px !important; height: 50px !important; top: 50%; position: absolute; margin-top: -35px; }
Please remove them.
Thank You
-
You must be logged in to reply to this topic.