ChronoForms4 CSS

BNDragon 29 Jan, 2014
Hi there again,

I'm trying to costum my form, in my myTemplate.css file i put

.moduletableContactForm
{
left: 50%;
top:50%;

}

The problem is that none of these formatting happen!
Can someone help me!?

Greatings
BN
GreyHead 29 Jan, 2014
Hi BN,

Not from the information here :-(

If you use your browser Web Developer tools you can probably work out what is happening.

Bob
BNDragon 29 Jan, 2014
Answer
Hi Bob,

I found my problem, the form of CF4 has a relative position by default, so I let here the note to who could have the same problem😉
Just fix the posiction to absolute!😉

.moduletableContactForm
{
left: 50%;
top:50%;
position: absolute;
}

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