✔ CS Page Gravity Form Edit
Completed by Alyssa W.
- Assigned to
-
Alyssa W.
Selena V.
- Notes
-
Hi
can you please edit the gravity form on this page to include the $1000 off CS offer? And change the "submit" text to "get coupon"? Thank you!
Alyssa
Thanks so much! Happy new year to you both!
I added this code below:
@media only screen and (max-width:768px)
{
.page-id-4339
.gform_wrapper .gform_footer input.button, .page-id-4339 .gform_wrapper .gform_footer input[type=submit] {
font-size: 23px !important;
}
}
@media only screen and (min-width:769px)
{
.page-id-4339
.gform_wrapper .gform_footer input.button, .page-id-4339 .gform_wrapper .gform_footer input[type=submit] {
font-size: 29px !important;
}
}
Let me know if you want to record it.
I already made the change, but it's not visible yet, because we don't have a Cache plugin, and it's risky to add one. I believe this change will be live in a couple of hours.
You just need to add it there in Additional CSS section. That's all.
If you want to change that button on other pages just add a comma and the same classes but a different ID. Here's an example with second page (e.g. .page-id-2005):
@media only screen and (max-width:768px)
{
.page-id-4339
.gform_wrapper .gform_footer input.button, .page-id-4339 .gform_wrapper .gform_footer input[type=submit], .page-id-2005
.gform_wrapper .gform_footer input.button, .page-id-2005 .gform_wrapper .gform_footer input[type=submit] {
font-size: 23px !important;
}
}
@media only screen and (min-width:769px)
{
.page-id-4339
.gform_wrapper .gform_footer input.button, .page-id-4339 .gform_wrapper .gform_footer input[type=submit], .page-id-2005
.gform_wrapper .gform_footer input.button, .page-id-2005 .gform_wrapper .gform_footer input[type=submit] {
font-size: 29px !important;
}
}