« Back Issue #497
  • 2022-03-26 11:06 Reported by panarisko
  • 2022-03-28 20:38 Marked fixed
Status: Marked fixed
Priority: Medium

Fixes for minor css issues

panarisko 2022-03-26 11:06

CSS ISSUE 1 The cookie-consent div needs some padding. Add padding:10px;

.cookie-consent {

   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   text-align: center;

padding:10px; }

CSS ISSUE 2 You have text-decoration: none; in search.css but it does not work for the cookie button. To fix it, just remove .anchor-button-consent:hover from

.anchor-button:hover, .anchor-button-consent:hover, {

   text-decoration: underline;

}

CSS ISSUE 3 footer and copyright divs need some space between them. .copyright {

   margin-top: 25px;

}

administrator 2022-03-28 20:38

CSS changes implemented with 576e70424.

X