Page 1 of 1

Page titles text doesnt change

Posted: 08 Mar 2016, 19:45
by correiax
Hi
where can I change the size of titles in Pages?
settings / gallery / title size ?
tried choosing different sizes there but the title remains unchangeable
thanks
RC
:mrgreen:

Re: Page titles text doesnt change

Posted: 09 Mar 2016, 01:09
by mjau-mjau
correiax wrote:where can I change the size of titles in Pages?
You must understand we can't add a setting to size ALL elements on page. Furthermore, the title is "responsive", so it adjusts it's own size on smaller screens. Either go with the defaults, or use custom CSS (which normally requires some web-dev experience) ... or face the consequences of trying to adjust everything without proper design planning/implementation.

Here is some code for settings>custom>customCSS, with font-size down-sized for titles. Feel free to adjust the value:
Code
h1.title {
  font-size: 1.5em !important;
}

Re: Page titles text doesnt change

Posted: 09 Mar 2016, 16:42
by correiax
thanks for the tip 8)