Forums

Chronoform5 in Custom HTML Modul?

Zachary88 16 Mar, 2015
Hello community,

can I insert the Chronoform5 in a Custom HTML Modul?
I don't know how to create it...

Greets Zach
fasenderos 16 Mar, 2015
Hi Zach,

do you realy need a Custom HTML Module?
Have you tried the one provided by Chronoforms?? download here
See this faq to configure the module
Andrea
Zachary88 16 Mar, 2015
Thank you fasenderos.

I wanted to center the form. Now I have it solved with a code.


Greets Zach
fasenderos 16 Mar, 2015
If you need to use a Custom HTML Module, than you have to download and install the Plugin provided by Chronoforms.
Than use the chronoforms tags to show the module
<div>{chronoforms}form_name{/chronoforms}</div>

See this Faq
Zachary88 16 Mar, 2015
That I have done already. If I insert the code
<div>{chronoforms}form_name{/chronoforms}</div>
, nothing happens... Now the problem is solved, with a code in .css. Thank you for your ideas.

Greets Zach
morblo 02 Jul, 2015
Hi ! How did you do to center your form ???
GreyHead 02 Jul, 2015
Hi morblo,

Add some CSS in a Load CSS action to set the left and right margins of the div.gbs3

Bob
morblo 02 Jul, 2015
What is the exact code I should add ?
GreyHead 03 Jul, 2015
Hi morbio,

It depends a bit on your template but start with this:
div.gbs3 {
  width: 640px;
  margin-left: auto;
  margin-right: auto;
}

Bob
This topic is locked and no more replies can be posted.