-1

As in the title. Is it by default centred? I read through the jquery.FullPage.css file and I can't find a way to make the text be anywhere in the page except from the centre, centre-left, or centre-rigth.

Cheers

hack-is-art
  • 325
  • 5
  • 20

1 Answers1

0

By default it is vertically centered as detailed in the documentation. The option verticalCentered is by default set to true.

Regarding the horizontal centering, you should be using your own CSS for that as you can see in any of the available demos online and the ones provided in the docs.

Alvaro
  • 40,778
  • 30
  • 164
  • 336
  • Hello Alvaro, I discovered that after I asked, how can I have verticalCentered to true in some sections and in some others to false? i dont have any knowledge of jQuery or Javascript if this is a dull qustion I apologise – hack-is-art Aug 04 '16 at 19:37
  • Just overwrite it with your own CSS. `#section1 .fp-tableCell { display: block; }` to disable it. – Alvaro Aug 05 '16 at 22:26