diff options
author | francis <francis> | 2008-11-07 16:44:17 +0000 |
---|---|---|
committer | francis <francis> | 2008-11-07 16:44:17 +0000 |
commit | 2a67e76bd49403a62c96a948de709acfa23f1199 (patch) | |
tree | b855ec80738887e1c55a6a11c0b09dfda8854d7c | |
parent | 7719e76f2d4bc2869435fa208236636d0fad875c (diff) |
Anchor links on unhappy page.
-rw-r--r-- | app/views/help/unhappy.rhtml | 6 | ||||
-rw-r--r-- | public/stylesheets/main.css | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/app/views/help/unhappy.rhtml b/app/views/help/unhappy.rhtml index 34ecc2929..b2f7a4028 100644 --- a/app/views/help/unhappy.rhtml +++ b/app/views/help/unhappy.rhtml @@ -25,7 +25,7 @@ to your request '<%=request_link(@info_request) %>'? <li>Either way, also <strong>use other means</strong> to answer your question.</li> </ol> -<h1 id="internal_review">1. Asking for an internal review</h1> +<h1 id="internal_review">1. Asking for an internal review <a href="#internal_review">#</a> </h1> <p> <% if !@info_request.nil? %> @@ -44,7 +44,7 @@ you originally requested, or you will be told that the review upholds the original decision. </p> -<h1 id="complaining">2. Complaining to the Information Commissioner</h1> +<h1 id="complaining">2. Complaining to the Information Commissioner <a href="#complaining">#</a> </h1> <p>If you are still unhappy after the public authority has done their internal review, then you can complain to the Information Commisioner. To do this read @@ -69,7 +69,7 @@ you want to help the fight to improve Freedom of Information, or maybe getting the information slowly is still worthwhile. You can also try and get the information by <strong>other means...</strong></p> -<h1 id="other_means">3. Using other means to answer your question</h1> +<h1 id="other_means">3. Using other means to answer your question <a href="#other_means">#</a> </h1> <p>You can try persuing your problem or your research in other ways. diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css index 55eb2687f..e6acceb42 100644 --- a/public/stylesheets/main.css +++ b/public/stylesheets/main.css @@ -881,17 +881,17 @@ div#about_sidebar margin: 0 0 0 1em; } -div#help_about dt a, div#help_about h1 a +div#help_about dt a, div#help_about h1 a, div#help_unhappy h1 a { text-decoration: none; font-size: 0.80em; color: #fff; background-color: #fff; } -div#help_about dt:hover > a, div#help_about h1:hover > a { +div#help_about dt:hover > a, div#help_about h1:hover > a, div#help_unhappy h1:hover > a { color: #0000ee; } -div#help_about dt:hover > a:hover, div#help_about h1:hover > a:hover { +div#help_about dt:hover > a:hover, div#help_about h1:hover > a:hover, div#help_unhappy h1:hover > a:hover { text-decoration: underline; } |