Home › Forums › CSS › [Solved] Form button present but invisible › Reply To: [Solved] Form button present but invisible
August 17, 2015 at 6:39 am
#206642
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.