mmisw / orr-portal

ORR Frontend component
Apache License 2.0
8 stars 5 forks source link

hidden footer #108

Open fgayanilo opened 7 years ago

fgayanilo commented 7 years ago

The footer on this new version is not shown unless you use the scrollbar. Maybe nice to show the footer outright - not that big a space needed.

carueda commented 7 years ago

Related: issue #80

carueda commented 7 years ago

Just manually experimented with:

<footer style="position: static; bottom: 0px; width: 100%; height: 40px; font-size:small; text-align:center" class="effect1">
  <div>
  <a style="text-decoration:none; color:black" target="_blank" href="http://marinemetadata.org">Marine Metadata Interoperability</a> &mdash;
  <a style="text-decoration:none; color:black" target="_blank" href="http://marinemetadata.org/semanticframework">MMI Semantic Framework</a> &mdash;
  <a style="text-decoration:none; color:black" target="_blank" href="http://marinemetadata.org/contactus">Contact Us</a>
  </div>
  <div style="color:gray">
  The MMI ORR is hosted by the Harte Research Institute, Texas A&M University - Corpus Christi, Corpus Christi, TX, USA
</div>
</footer>

along with:

.ontListGrid {
  width: 100%;
  min-height: 500px;
  height: calc(98vh - 110px - 40px);
}

The main page looks good ... need to revisit this later (this was a quick experiment, nothing committed to code).