Hi,
I want a different Layout for one form_element input button. The Button 'Registrieren' must be 'font-weight: bold;' and background-color: #FFFFFF;'
I do not find the way, where I can do this.
Please can you help me.
Regards, Mac
I want a different Layout for one form_element input button. The Button 'Registrieren' must be 'font-weight: bold;' and background-color: #FFFFFF;'
I do not find the way, where I can do this.
Please can you help me.
Regards, Mac
Hi Mac,
add this style code at the top of your form code:
give your button id = "register"
Cheers
Max
add this style code at the top of your form code:
<style type="text/css">
#register{
background-color: #FFFFFF;!important
font-weight: bold;!important
}
give your button id = "register"
Cheers
Max
Hi Max,
I paste the Stylesheet in top of the FormCode and the id to
When the Style is in the FormCode - the form isn't shown anymore.
Mac
I paste the Stylesheet in top of the FormCode and the id to
<div class="form_element cf_button"><input value="Registrieren" name="undefined" type="submit" id="register"></div>
When the Style is in the FormCode - the form isn't shown anymore.
Mac
Hi Mac,
The style tag wasn't closed in Max's snippet
Bob
The style tag wasn't closed in Max's snippet
<style type="text/css">
#register{
background-color: #FFFFFF; !important
font-weight: bold; !important
}
</style>
Bob
This topic is locked and no more replies can be posted.