Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Form button present but invisible Reply To: [Solved] Form button present but invisible

#206642
kwerty
Participant

Hi Russell,

You have set the height on the ‘LI’ element and that’s the reason why you are not able to see the submit button.

#gform_widget-2 {
height: 460px;
}

Delete that height parameter or set the height accordingly.

Thanks.