Title page

May 2014 WordPress Theme
GK User
Mon Jan 26, 2015 8:12 am
Hello!

I have a question.

When I see the title page from a mobile, this title is set automatically becoming smaller (see picture 1)
1.jpg


But the page "Contact" does not perform this same action.
The page "Contact" holds the name of big title. (see image 2)
2.jpg


I want all the titles behave according to picture 1.

In other words, I want you all titles are automatically adjusted.

That can be done?
User avatar
Junior Boarder

GK User
Mon Jan 26, 2015 9:25 am
Hi,

Could you send me a direct URLs to these pages? (here or via PM).
User avatar
Moderator

GK User
Mon Jan 26, 2015 4:55 pm
User avatar
Junior Boarder

GK User
Tue Jan 27, 2015 9:04 am
Add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)

Code: Select all
@media (max-width: 820px) {
   .page-title,
   .contactpage .page-title {
      font-size: 32px;
      line-height: 32px;
   }
}

@media (max-width: 480px) {
   .page-title,
   .contactpage .page-title {
      font-size: 24px;
      line-height: 1.2;
   }
}
User avatar
Moderator


cron