Search…

X3 Photo Gallery Support Forums

Search…
 
User avatar
correiax
Experienced
Topic Author
Posts: 41
Joined: 17 Dec 2013, 21:33

Page titles text doesnt change

08 Mar 2016, 19:45

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:
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13999
Joined: 30 Sep 2006, 03:37

Re: Page titles text doesnt change

09 Mar 2016, 01:09

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;
}
 
User avatar
correiax
Experienced
Topic Author
Posts: 41
Joined: 17 Dec 2013, 21:33

Re: Page titles text doesnt change

09 Mar 2016, 16:42

thanks for the tip 8)