From: Ian Weller Date: Mon, 11 Apr 2016 19:25:03 +0000 (-0400) Subject: I thing I got the slideshow back to oringinal state X-Git-Tag: v1.0.0^2~63 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=ca45e2dd092883808b3d131810a3e34e9d763ae5;p=WP-Themes%2Fgaslightmedia.git I thing I got the slideshow back to oringinal state --- diff --git a/css/app.css b/css/app.css index 896c8a1..fab9d51 100644 --- a/css/app.css +++ b/css/app.css @@ -6706,7 +6706,12 @@ h2#block-title { right: 0; float: none; margin: 0 auto; - top: 10%; } + top: 10%; + max-height: 330px; } + @media screen and (max-width: 1199px) { + #slideshow .nivo-caption { + width: 450px; + margin: 0; } } #slideshow .nivo-caption h6 { width: 400px; font-weight: bold; @@ -6715,16 +6720,20 @@ h2#block-title { width: 400px; letter-spacing: 0.1em; font-size: 18px; - padding: 0; } + padding: 0; + margin-bottom: 25px; + position: relative; } @media screen and (max-width: 1024px) { #slideshow .nivo-caption p { display: none; } } #slideshow .nivo-caption a.button { + position: relative; text-transform: uppercase; background: transparent; border: 1px solid #FFFFFF; color: #FFFFFF; - letter-spacing: 0.1em; } + letter-spacing: 0.1em; + margin-bottom: 0; } /* NextGen Gallery */ [class*="block-grid-"] > li { diff --git a/scss/_slideshow.scss b/scss/_slideshow.scss index 1fb1775..328d464 100644 --- a/scss/_slideshow.scss +++ b/scss/_slideshow.scss @@ -49,6 +49,11 @@ float: none; margin: 0 auto; top: 10%; + max-height: 330px; + @media screen and (max-width: 1199px) { + width: 450px; + margin: 0; + } h6 { width: 400px; font-weight: bold; @@ -59,17 +64,20 @@ letter-spacing: 0.1em; font-size: 18px; padding: 0; - + margin-bottom: 25px; + position: relative; @media screen and (max-width: 1024px) { display: none; } } a.button { + position: relative; text-transform: uppercase; background: transparent; border: 1px solid $white; color: $white; letter-spacing: 0.1em; + margin-bottom: 0; } } }