Skip to content
Snippets Groups Projects
Commit d30b5413 authored by khawkins98's avatar khawkins98
Browse files

Don't theme off IDs #49

parent 61ae3878
No related branches found
No related tags found
No related merge requests found
......@@ -534,7 +534,7 @@ a:active {
/*
LOCAL FOOTER
=============================== */
#local-footer {
.local-footer {
border-top: 2px solid #eee;
}
......@@ -547,7 +547,7 @@ a:active {
}
}
#global-footer {
.global-footer {
border-top: 5px solid #eee;
padding-top: .5rem;
......@@ -583,14 +583,14 @@ a:active {
a:active{
border-bottom: 1px dashed #e4e4e4;
}
} // END #global-footer
} // END .global-footer
#ebi-footer-meta {
.ebi-footer-meta {
font-size: 85%; margin-bottom: 9px;
p.address { color: #888; }
} // END #ebi-footer-meta
} // END .ebi-footer-meta
/*
......@@ -874,7 +874,7 @@ a.more:after {
.masthead-black-bar nav,
.masthead nav,
form#local-search,
#global-footer,
.global-footer,
#search_ebi,
#shortcuts,
#ebi_search_results { display: none; }
......
......@@ -203,14 +203,14 @@
<footer>
<!-- Optional local footer (insert citation / project-specific copyright / etc here -->
<div id="local-footer">
<div id="local-footer" class="local-footer">
<div class="row">
<span class="reference">How to reference this page: ...</span>
</div>
</div>
<!-- End optional local footer -->
<div id="global-footer">
<div id="global-footer" class="global-footer">
<nav id="global-nav-expanded" class="row">
<!-- Footer will be automatically inserted by footer.js -->
......
......@@ -173,7 +173,7 @@ function injectEBIFramework() {
'</div>';
var EBIFooter = '<div id="global-footer">' +
var EBIFooter = '<div id="global-footer" class="global-footer">' +
'<nav id="global-nav-expanded" class="row">' +
'<!-- Footer will be automatically inserted by footer.js -->' +
'</nav>' +
......
......@@ -32,18 +32,6 @@
})();
(function fixes() {
// set text in copyright notice, adjust to current year
// (function copyrightFix() {
// try {
// var d = new Date();
// document.getElementById('ebi-footer-meta').innerHTML = "" +
// "<p class=\"address\">EMBL-EBI, Wellcome Genome Campus, Hinxton, Cambridgeshire, CB10 1SD, UK &nbsp; &nbsp; +44 (0)1223 49 44 44</p>" +
// "<p>Copyright &copy; EMBL-EBI " + d.getFullYear() + " | EBI is an outstation of the <a href=\"http://www.embl.org\">European Molecular Biology Laboratory</a> | <a href=\"/about/terms-of-use\">Terms of use</a></p>";
// }
// catch (err) {}
// })();
// mark pdf/doc/txt links with link-pdf/link-doc/link-txt classes
// exclude links with images
// include only links to own domains
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment