Blogger How To Change The Cookies Notification For European Union Countries
Blogger How To Change The Cookies Notification For European Union Countries The cookie notification on Blogger comes on every blog for EU visitors. The cookie message appears on top of the blog. Here is a solution how to make it not so prominent. The code below will move the cookie notification bottom, will change the color to white background and gray text. To do this: 1. Go to your blog on Blogger.com dashboard and choose Layout. 2. Press "Add a Gadget" 3. Choose "HTML/JavaScript" 4. Copy and paste the code below <style> #mainPanel{ position:relative ; } #androidbanner{ position:absolute ; top:10px; right:-90px; } @media screen and (max-width: 900px){ #androidbanner{ display:none; } } #cookieChoiceInfo { position: fixed; width: 100%; margin: 0px; left: 0px; bottom: 0px !important; top:auto !important; padding: 0px; z-index: 999999 !important; text-align: center; font-weight: normal !important; color: rgb(125, 125, 125) !important; line-height:...