From 9e83a3eac7275e770ec94c6d3affec1db626d9e5 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 15 Dec 2017 12:17:58 -0500 Subject: [PATCH] increase button font sizes, changing total charged text increasing button font sizes --- css/front.css | 7 ++++++- views/front/registrations/cart.html | 2 +- views/front/registrations/checkout.html | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/css/front.css b/css/front.css index c8137d5..2e54922 100644 --- a/css/front.css +++ b/css/front.css @@ -263,6 +263,9 @@ padding: 0; } } +#regSubmitButton{ + font-size: 16px; +} label.glm-reg-terms-label{ display: inline !important; margin-bottom: 5px; @@ -313,7 +316,9 @@ label.glm-reg-terms-label{ label.registrant-label { width: 80%; } - +body .glm-reg-proceed-to-checkout{ + font-size: 16px !important; +} .reg-class-detail { /* display: none; */ padding: 5px 10px; diff --git a/views/front/registrations/cart.html b/views/front/registrations/cart.html index 16f3716..3bc74cf 100644 --- a/views/front/registrations/cart.html +++ b/views/front/registrations/cart.html @@ -40,7 +40,7 @@ {else}
-
You have not yet submitted your registration! Proceed to Checkout
+
You have not yet submitted your registration! Proceed to Checkout
{/if} diff --git a/views/front/registrations/checkout.html b/views/front/registrations/checkout.html index c37d16e..a9f8fc4 100644 --- a/views/front/registrations/checkout.html +++ b/views/front/registrations/checkout.html @@ -23,7 +23,7 @@ - See summary of registration request and charges below +
@@ -311,7 +311,7 @@
{if $cart.totalCharges > 0} -

Total Charged: ${$cart.totalCharges|number_format:2}

+

Total Charge: ${$cart.totalCharges|number_format:2}

{else}
(There is no charge for your request.)
{/if} -- 2.17.1