• Resolved SeanBanksBliss

    (@seanbanksbliss)


    In my form underneath the red “Required*” there is a question that is required. I’d like to make this more clear by either making the * in the question title red or just the whole question title itself red. I have tried to do this using:
    label.ss-q-item-label [for="entry_390771539"] { color: red; }

    I have also tried:
    label.ss-q-item-label [for="entry_390771539"] > div.ss-q-title { color: red; }

    But it doesn’t seem to be working.

    https://www.ads-software.com/plugins/wpgform/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mike Walsh

    (@mpwalsh8)

    This will make the asterisk red:

    span.ss-required-asterisk {
        color: #FF0000;
    }

    If you want the entire question red, you could do this:

    label[for="entry_390771539"] div.ss-q-title {
        color: #FF0000;
    }

    Add these to your Custom CSS and make sure to enable Custom CSS on the plugin settings page (Dashboard->Settings->Google Forms).

    Because this CSS is very form specific, I would add it to the form definition and not the global Custom CSS setting.

    Thread Starter SeanBanksBliss

    (@seanbanksbliss)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Apply CSS to "entry_XXXXX"’ is closed to new replies.