I m novice and i don t want to touch CSS if i m not sure.
My form is here:
http://rt2012-attestation.com/test-formulaire-css/
Is anyone could help me please?
It s not beautiful... :/
I m novice and i don t want to touch CSS if i m not sure.
My form is here:
http://rt2012-attestation.com/test-formulaire-css/
Is anyone could help me please?
It s not beautiful... :/
Please add this to one of your theme's stylesheets to override the width:
[css]
body .gform_wrapper {
width:100%!important;
}
Thanks you very much you re the boss.
Rub
A last question/
On my page there s a problem with the colonne:
http://rt2012-attestation.com/test-formulaire-css/
At "Description sommaire"
The last colonne on the right is down, she doesn t want to align.
Have you got a idea about it ?
In this stylesheet http://rt2012-attestation.com/wp-content/themes/dt-nimble/css/style.css?ver=3.5 on line 233, there is this rule causing the problem:
[css]
ul li {
padding: 0 0 0 17px;
That left padding is what is throwing things off. Please add this to the same stylesheet you used last time and your columns will align properly:
[css]
body .gform_wrapper ul li {
padding-left:0px;
}