All Collections
Messaging
Miscellaneous
WinRed: Adding "Optional" to Mobile Field
WinRed: Adding "Optional" to Mobile Field
Katy avatar
Written by Katy
Updated over a week ago

A best practice when setting up your WinRed pages is to remove the opt-in checkbox and to add the word "optional" to the Mobile Field.

Add CSS to WinRed Pages:

  1. Log into Portal

  2. Select an existing page to edit or create a new page

  3. Navigate to the ‘Advanced’ tab

  4. Scroll down to ‘CSS Override’

  5. Copy/Paste the appropriate code below, depending on whether the candidate/organization is federal or state

  6. Click the green 'Save' button


FEDERAL DONATION PAGE

label[for=conduit_mobile_number] {

display: none;

}

label[for=conduit_mobile_number]:after {

content: " (Optional)";

}


FEDERAL LEAD PAGE

label[for=petition_mobile_number] {

display: none;

}

label[for=petition_mobile_number]:after {

content: " (Optional)";

}


STATE DONATION PAGE

label[for=donation_mobile_number] {

display: none;

}

label[for=donation_mobile_number]:after {

content: " (Optional)";

}


STATE LEAD PAGE

label[for=petition_mobile_number] {

display: none;

}

label[for=petition_mobile_number]:after {

content: " (Optional)";

}


MERCHANDISE PAGE

label[for=checkout_mobile_number] {

display: none;

}

label[for=checkout_mobile_number]:after {

content: " (Optional)";

}

Did this answer your question?