diff options
-rwxr-xr-x | templates/web/fixmystreet/around/display_location.html | 8 | ||||
-rw-r--r-- | web/cobrands/fixmystreet/layout.scss | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/templates/web/fixmystreet/around/display_location.html b/templates/web/fixmystreet/around/display_location.html index b1c6b3723..f5538cfb9 100755 --- a/templates/web/fixmystreet/around/display_location.html +++ b/templates/web/fixmystreet/around/display_location.html @@ -81,17 +81,17 @@ </p> <div class="shadow-wrap"> - <ul id="key-tools"> - <li><a id="email_alert" class="feed" href="#">Recieve Updates</a></li> + <ul id="key-tools" class="singleton"> + <li><a class="feed" href="[% email_url | html %]">Recieve Updates</a></li> </ul> </div> - <div id="email_alert_box"> +<!-- <div id="email_alert_box"> <ul> <li><a href="[% rss_url | html %]" id="rss_alert">[% rss_alt %]</a></li> <li><a rel="nofollow" href="[% email_url | html %]">[%- loc('Email me new local problems') -%]</a></li> </ul> - </div> + </div> --> <section class="full-width"> diff --git a/web/cobrands/fixmystreet/layout.scss b/web/cobrands/fixmystreet/layout.scss index b3b1c1dc1..dbb0a9cb2 100644 --- a/web/cobrands/fixmystreet/layout.scss +++ b/web/cobrands/fixmystreet/layout.scss @@ -259,6 +259,14 @@ body { } } } + &.singleton { + li { + text-align:right; + a { + padding-right:3em; + } + } + } } } |