Change background colour of Call to Action

  • Unknown's avatar

    Hi, how do I change the background colour of my ‘Call to Action 1’ section. I just want it to be a blue background like ‘Call to Action 2’. Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi, this would allow you to change both the non-hover and hover background, border and text colors.

    .btn-primary {
      background-color: #cc0000 !important;
      border-color: #fff !important;
      color: #000;
    }
    .btn-primary:hover {
      background-color: blue !important;
      border-color: #fff !important;
      color: #fff;
    }
  • The topic ‘Change background colour of Call to Action’ is closed to new replies.