• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Changing button color...

Changing button color... 7 years 2 months ago #37909

  • gregs
  • gregs's Avatar
  • OFFLINE
  • Expert Boarder
  • Posts: 85
  • Thank you received: 5
Hello. How can the "Submit" button color be changed from bright blue to anything else in Rs FormPro 2.0.5? I've tried putting a statement in the CSS section of Form Attributes but it doesn't seem to work. Thanks.
The administrator has disabled public write access.

Changing button color... 7 years 2 months ago #37910

  • iceferret
  • iceferret's Avatar
  • OFFLINE
  • Gold Boarder
  • Posts: 246
  • Thank you received: 64
I use Uikit a lot for my forms. Use Firefox's code inspector to find the right class put for example the followinge css in the 'form properties/css. Don't forget the <style>.....</style> tags. If you put the css in the submit buttons attribute it'll change the reset button to the same colours, something you may not want.

.uk-button-primary
{
background-color: #0500E6;
color: #FFF !important;
}

That gives a dark blue button with white text for example. For the hover it's:

.uk-button-primary:hover
{whatever colours you want}

You'll need to find the classes for your forms depending on whether you're using bootstrap or zurb.

If you don't need the reset button just put this in the buttons attributes/additional attributes field
style="background;#0500e6; color:#fff"
If you can keep your head when all about you are losing theirs, then you obviously don't understand the situation!
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!