For another website i use this code (cookie bar in top, and push down website).
Is possible to make this (top bar, with push down website)?
Is good for business. Thank you!
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
<script>
window.addEventListener("load", function(){
window.cookieconsent.initialise({
"palette": {
"popup": {
"background": "#373d42"
},
"button": {
"background": "#f1d600"
}
},
"theme": "classic",
"position": "top",
"static": true,
"content": {
"message": "Acest site web folose?te cookie-uri. Dac? continua?i s? folosi?i acest site web, sunte?i de acord cu utilizarea lor. Pentru a afla mai multe, inclusiv cum s? controla?i cookie-urile, vede?i aici:",
"dismiss": "Accept cookie-urile",
"link": "Politica de confiden?ialitate",
"href": "/prelucrarea-datelor-personale/"
}
})});
</script>