• 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: Change the Subscribe Button Color

Change the Subscribe Button Color 9 years 7 months ago #28816

I cannot figure out how to change the bright green "Subscribe" button color. I went into the bootstrap.css file and put in a new color under this part and it still is not changing:

.btn-success {
color: #ffffff;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
background-color: #5bb75b;
background-image: -moz-linear-gradient(top, #62c462, #51a351);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
background-image: -webkit-linear-gradient(top, #62c462, #51a351);
background-image: -o-linear-gradient(top, #62c462, #51a351);
background-image: linear-gradient(to bottom, #62c462, #51a351);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
border-color: #51a351 #51a351 #387038;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
*background-color: #51a351;
/* Darken IE7 buttons by default so they stand out more given they won't have borders */

filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
The administrator has disabled public write access.

Change the Subscribe Button Color 9 years 7 months ago #28818

  • alexp
  • alexp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 2253
  • Thank you received: 180
Can you post an URL to the page in question so we can have a look ?
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Change the Subscribe Button Color 9 years 7 months ago #28826

mdavispublications.com/competition-registration
(Note, I already changed the words "Subscribe" to "Register Now")
Last Edit: 9 years 7 months ago by nicole.alarid.
The administrator has disabled public write access.

Change the Subscribe Button Color 9 years 7 months ago #28832

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
You can adjust the color of that specific button from the following CSS file :
mdavispublications.com/templates/no1_sho...ootstrap-default.css

to be more precise, the following declarations must be changed:
.btn-success {
    background-color: #5bb75b !important;
    background-image: linear-gradient(to bottom, #62c462, #51a351) !important;
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25) !important;
    color: #ffffff !important;
}
My help is not official customer support. To receive your support, submit a ticket by clicking here
The administrator has disabled public write access.

Change the Subscribe Button Color 9 years 7 months ago #28851

That does not work - Already tried.
The administrator has disabled public write access.

Change the Subscribe Button Color 9 years 7 months ago #28861

  • cosmin.cristea
  • cosmin.cristea's Avatar
  • OFFLINE
  • Platinum Boarder
  • Posts: 756
  • Thank you received: 144
I am looking at your website and the declaration for the button is not changed. You will have to edit this CSS file (around line 2722):

http://mdavispublications.com/templates/no1_shopping/css/bootstrap/bootstrap-default.css
My help is not official customer support. To receive your support, submit a ticket by clicking here
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!