• Resolved maugegonzbru

    (@maugegonzbru)


    How to change the color of the privacy policy link on the consent button. I have managed to change everything except this

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Williams – WPMU DEV Support

    (@wpmudev-support8)

    Hi @maugegonzbru

    I hope you’re well today!

    This is because that link is just a HTML content of the field. You can customize that content by editing the field.

    So to change color, you’d need to use simple additional CSS. By default field has two links: “privacy policy” and “terms and conditions”. If you want to change color the same way for both of them, you can use this CSS:

    .forminator-consent__label a {
      color:#F00;
    }
    
    .forminator-consent__label a:hover {
      color:#00F;
    }

    The first rule is regular color and the second one is “on hover” (mouse over).

    If you only want to change first link (with default setup, the first one would be “privacy policy”) you can use this instead:

    .forminator-consent__label a:first-of-type {
      color:#F00;
    }
    
    .forminator-consent__label a:first-of-type:hover {
      color:#00F;
    }

    To add CSS, simply go to “Appearance” settings of the form, enable custom CSS option, put CSS there and save the form.

    Best regards,
    Adam

    Plugin Support Kris – WPMU DEV Support

    (@wpmudevsupport13)

    Hi @maugegonzbru

    We haven’t heard from you in a while, I’ll go and mark this thread as resolved. If you have any additional questions or require further help, please let us know!

    Kind Regards,
    Kris

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Color change in urls’ is closed to new replies.