Hi,
In chronoforms V5 form, I would like to custom my "SUBMIT" button ...
Simply change the color of my submit button who is actualy white the "mouse over" color is good.
I try changing the .form-control background color in the bootstrap.css but in this way, every content change.
Any ideas ?
Thanks
Loadlucas
In chronoforms V5 form, I would like to custom my "SUBMIT" button ...
Simply change the color of my submit button who is actualy white the "mouse over" color is good.
I try changing the .form-control background color in the bootstrap.css but in this way, every content change.
Any ideas ?
Thanks
Loadlucas
Hello loadlucas,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I add an image to the submit button?
P.S: I'm just an automated service😉
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How can I add an image to the submit button?
P.S: I'm just an automated service😉
Hi loadlucas,
You can add CSS styles directly to the Submit Button element settings, or better, you can give your button a unique id e.g. submit_btn and add CSS in a Load CSS action.
Bob
You can add CSS styles directly to the Submit Button element settings, or better, you can give your button a unique id e.g. submit_btn and add CSS in a Load CSS action.
Bob
Hi Greyhead,
Thanks for your help ...
That's the way i try but ... it appear like in the capture2.jpg, all inside box had the same color as i define the submit button.
Regards,
Loadlucas
Thanks for your help ...
That's the way i try but ... it appear like in the capture2.jpg, all inside box had the same color as i define the submit button.
Regards,
Loadlucas
Hi loadlucas,
What CSS exactly are you using? It will work if you get the correct CSS selectors.
Bob
What CSS exactly are you using? It will work if you get the correct CSS selectors.
Bob
Hi,
It seam to be bootstrap.css
If you want to have a look ...
http://tpconsulting.be/index.php/reservation
Regards,
Loadlucas
It seam to be bootstrap.css
If you want to have a look ...
http://tpconsulting.be/index.php/reservation
Regards,
Loadlucas
Hi LoadLucas,
This works OK
Bob
This works OK
input#submit_btn {
background-color: blue;
color: yellow !important;
}
Bob
Hi Bob,
Work fine ... thank you very much !
Is it a way to ad a mouse over aspect adding the values in the Load CSS ?
Thanks again ...
Loadlucas
Work fine ... thank you very much !
Is it a way to ad a mouse over aspect adding the values in the Load CSS ?
Thanks again ...
Loadlucas
Hi LoadLucas,
Bob
input#submit_btn:hover {
background-color: purple;
color: green !important;
}
Bob
This topic is locked and no more replies can be posted.