From 5629a621eea31ee51ba53cb5416760b867d8907d Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Fri, 8 Jul 2016 16:02:54 -0400 Subject: [PATCH] added margin to breadcrumbs if there is a confirmation message --- js/app.js | 1 + js/custom/pageSetup.js | 1 + 2 files changed, 2 insertions(+) diff --git a/js/app.js b/js/app.js index 25cbdc0..6746aa4 100644 --- a/js/app.js +++ b/js/app.js @@ -151,6 +151,7 @@ $(document).ready(function () { }); if ($(".form-confirmation").length > 0){ + $("div.breadcrumbs").css("margin-bottom", "25px") $(".form-confirmation").insertAfter("div.breadcrumbs"); } diff --git a/js/custom/pageSetup.js b/js/custom/pageSetup.js index 1baf2ba..25479d3 100644 --- a/js/custom/pageSetup.js +++ b/js/custom/pageSetup.js @@ -142,6 +142,7 @@ $(document).ready(function () { }); if ($(".form-confirmation").length > 0){ + $("div.breadcrumbs").css("margin-bottom", "25px") $(".form-confirmation").insertAfter("div.breadcrumbs"); } -- 2.17.1