Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi,
I have an issue with page title with center page header style. On the page, I set page options>page header style to center. My page title is “PLANNING FOR THE INTELLIGENT BUSINESS”. The title shows on desktop only “PLANNING FOR THE INTELLIGENT”. Then on tablet and phone, the part of text is missing. It seems if the text is long, it is cut.
Could you fix this issue?
Apple
Hello,
Please add this code to the page custom CSS box:
For desktop view:
.header_page.centered h1 { width: 114%; margin-left: -68px; }
For tablet view:
@media (max-width: 979px) and (min-width: 768px) { .header_page.centered h1 { font-size: 30px; } }
For mobile view:
@media (max-width: 480px) { .header_page.centered h1 { margin-left: -28px; } }
Let us know.
Best regards!
You must be logged in to reply to this topic.