diff options
author | Jonas Oberg <jonas@morus.se> | 2012-11-14 16:16:58 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2014-03-11 16:36:19 +0000 |
commit | 8f6a636b7b29d4d1621653d8dcaeacf382131a8c (patch) | |
tree | 4850f9aea536af7bb76e45c20e362bc898913612 | |
parent | d299093bfecb6ed62081843d613c54aa464d817a (diff) |
Updated footer information
-rw-r--r-- | templates/web/fixamingata/footer.html | 14 | ||||
-rw-r--r-- | web/cobrands/fixamingata/layout.scss | 34 |
2 files changed, 39 insertions, 9 deletions
diff --git a/templates/web/fixamingata/footer.html b/templates/web/fixamingata/footer.html index b4eb5c6f4..2a9351375 100644 --- a/templates/web/fixamingata/footer.html +++ b/templates/web/fixamingata/footer.html @@ -2,17 +2,14 @@ <footer role="content-info"> <div class="tablewrapper bordered"> <div id="footer-mobileapps"> - <h4>Mobile apps</h4> - - <ul> - <li><a class="m-app-iphone" href="http://itunes.apple.com/gb/app/fixmystreet/id297456545">iPhone</a></li> - <li><a class="m-app-droid" href="https://market.android.com/details?id=com.android.fixmystreet">Android</a></li> - <li><a class="m-app-nokia" href="http://store.ovi.com/content/107557">Nokia</a></li> - </ul> </div> - <div id="footer-help"> + <ul> + <li> + <h4>Sekretess och kakor</h4> + <p>Vill du veta mer om det juridiska? Läs vår information <a href="/privacy">om sekretess och kakor</a></p> + </li> <li> <h4>[% loc('Are you a developer?') %]</h4> <p>[% loc('Would you like to contribute to FixMyStreet? Our code is open source and <a href="http://github.com/mysociety/fixmystreet">available on GitHub</a>.') %]</p> @@ -24,7 +21,6 @@ </ul> </div> </div> - <p><a href="/privacy">Privacy and cookies</a></p> </footer> [% END %] </div><!-- .content role=main --> diff --git a/web/cobrands/fixamingata/layout.scss b/web/cobrands/fixamingata/layout.scss index 6f435d141..5b968a97a 100644 --- a/web/cobrands/fixamingata/layout.scss +++ b/web/cobrands/fixamingata/layout.scss @@ -85,3 +85,37 @@ body { #front-main { background: $primary url(/cobrands/fixamingata/images/tile-y.jpg); } + +.tablewrapper { + >div { + width: auto; + } +} +.ie6, .ie7 { + .tablewrapper { + div { + width: auto; + } + } +} + +#footer-help { + ul { + li { + width: 30%; + border-right: 1.25em solid transparent; + &:last-child { + border-left: none; + } + } + } +} +.ie6, .ie7 { + #footer-help { + ul { + li { + width: 33%; + } + } + } +} |