Необходимо создать блок (div), в углу которого будет или "Х" или надпись "закрыть". После закрытия, чтоб блок вновь появился к примеру через 7 дней.
Может будет к стати, код моего div:
.titlesh1 {
width:90%;
border-right: 1px solid #de4b38;
border-bottom: 1px solid #de4b38;
border-left: 1px solid #de4b38;
border-top: 1px solid #de4b38;
padding:2px;
text-align: center;
font-size: 12px;
background:#de4b38;
border-radius: 5px;
color:#ffffff;
text-decoration: none;
transition: all 0.3s ease-out;
margin:0 auto;
}
.titlesh1:hover {
width:90%;
border-right: 1px solid #be4130;
border-bottom: 1px solid #be4130;
border-left: 1px solid #be4130;
border-top: 1px solid #be4130;
padding:2px;
text-align: center;
font-size: 12px;
background:#be4130;
border-radius: 5px;
color:#fff;
text-decoration: none;
transition: all 0.3s ease-out;
margin:0 auto;
}