diff options
-rw-r--r-- | templates/web/reading/footer.html | 8 | ||||
-rw-r--r-- | templates/web/reading/header.html | 6 | ||||
-rw-r--r-- | web/cobrands/reading/css/css.scss | 41 |
3 files changed, 25 insertions, 30 deletions
diff --git a/templates/web/reading/footer.html b/templates/web/reading/footer.html index be410bbfc..2d58eb0c7 100644 --- a/templates/web/reading/footer.html +++ b/templates/web/reading/footer.html @@ -10,14 +10,6 @@ <li><a href="/faq">[% loc("Help") %]</a></li> </ul> -<div id="footer"> - <p>[% loc('Built by <a href="http://www.mysociety.org/">mySociety</a>') %] - | <a href="/contact">[% loc("Contact FixMyStreet") | replace(' ', ' ') %]</a></p> -[% loc('<a href="http://www.mysociety.org/"><img id="logo" width="133" height="26" src="/i/mysociety-dark.png" alt="View mySociety.org"><span id="logoie"></span></a>') %] -</div> - <!-- start of footer --> - <div style="clear:both"></div> - </div> <div style="clear:both"></div> </div> <div class="footer"> diff --git a/templates/web/reading/header.html b/templates/web/reading/header.html index d32bd545e..39281ed01 100644 --- a/templates/web/reading/header.html +++ b/templates/web/reading/header.html @@ -19,7 +19,7 @@ </head> <body> <div class="wrapper"> - <div class="header"> + <div class="header" id="header"> <p id="reading-logo" class="thirdParty"><img src="/cobrands/reading/images/reading-borough-council-logo.gif" width="176" height="38" alt="reading borough council logo" class="printMe" /><a href="http://www.reading.gov.uk/" title="Click to return to home page">Reading Borough Council</a></p> </div> @@ -27,10 +27,6 @@ <div class="thirdParty"> <!-- end of header --> - [% IF NOT title AND NOT c.req.path %]<h1 id="header">[% ELSE %]<div id="header"><a href="/">[% END %] - [%- loc('Fix<span id="my">My</span>Street') %] - [%- IF NOT title AND NOT c.req.path %]</h1>[% ELSE %]</a></div>[% END %] - <ul id="meta"> [% IF c.user_exists %] <li>[% tprintf(loc('Signed in as %s'), c.user.name || c.user.email) %] diff --git a/web/cobrands/reading/css/css.scss b/web/cobrands/reading/css/css.scss index d9f3083ee..0070e6a63 100644 --- a/web/cobrands/reading/css/css.scss +++ b/web/cobrands/reading/css/css.scss @@ -9,28 +9,35 @@ $map_width: 420px; @import "../../../css/_main.scss"; - #navigation { - margin-top: 125px; - } +p.thirdParty#reading-logo { + margin-top: 0px; + padding-bottom: 0px; +} - h1#header { - font-size: 200%; - margin-bottom: 0em; - } +div#header { + border-bottom: solid 2px #6D1443; +} - #logo { - top: 12.5em; - } +#header a:link, #header a:visited, div#header { + background-color: transparent; +} - a { - color: #9C2161; - } +a { + color: #9C2161; +} + +body { + font-family: Helvetica, Arial, sans-serif; + font-size: 13.5px; + color: black; +} - body { - font-family: Helvetica, Arial, sans-serif; - font-size: 13.5px; - color: black; +#navigation { + margin-top: 9px; + a { + text-decoration: none; } +} #mysociety { |