Page 1 of 1

Plain Text - Types?

Posted: 03 Nov 2016
by wdeffner
Hi,

I'm not very familiar with CSS, so this may be a silly question:

In SPForms you chose 4 types in the layout-dialogue for "Plan Text": Text, Header1, Header2, Header3.

I'd rather use these than Richt Text, but where are these templates defined?

Thank you,

Wolfgang

Re: Plain Text - Types?

Posted: 04 Nov 2016
by Dmitry Kozlov
Depending on the selected option, the text will be wrapped into p, h1, h2, or h3 HTML-tag.

Re: Plain Text - Types?

Posted: 04 Nov 2016
by wdeffner
I understood that, but I want to change h1, h2, h3, ... so that they left-aligned. How can I achieve this? Were are h1, h2, h3, ... defined?



Thank you

Wolfgang

Re: Plain Text - Types?

Posted: 07 Nov 2016
by Dmitry Kozlov
Put the following code into CSS-editor:

Code: Select all

#fd_form h1 {
	margin: 0;
}

Re: Plain Text - Types?

Posted: 07 Nov 2016
by wdeffner
Thank you, this is exactly what I was looking for.

Wolfgang