Hi
Is it possible to change the layout of the form that came with the theme so that the form label appear above the input boxes? I looked at the CSS but could not find a solution.
Thanks,
Lyse
Hi
Is it possible to change the layout of the form that came with the theme so that the form label appear above the input boxes? I looked at the CSS but could not find a solution.
Thanks,
Lyse
Hi Lyse,
If you don't want to edit the actual php function, you can try the following css:
.ajax_form .text_input {
margin-top: 20px;
}
#top .ajax_form label {
left: 0px;
position: absolute;
}
Regards,
Devin
Hi Devin,
I used your CSS above to solve the same problem, I wanted however to add a "Message*" label above the message box text area (kitticraft.com/contact), how do I go about doing that?
Thanks,
Lawrence
Hey!
Open up includes/contact-form.php and search for following line:
'message' => array('type'=>'textarea','label'=>__('Message','avia_framework'), 'check'=>'is_empty'), //message
Replace "Message" with any other text of your choice.
Best regards,
Peter
Hey Peter,
Thanks, for some strange reason, nothing is showing up, not even the default 'Message' label (kitticraft.com/contact)
Hi!
Add following code to css/custom.css or the quick css field:
.textare_label.hidden.textare_label_avia_message{
display: block !important;
}
Regards,
Peter
Hi Peter,
Thanks, that did the trick...
Best regards,
Lawrence
This topic has been closed to new replies.