Hi,
There is no inbuilt setting to remove the x(close) option from the banner. But, you can use custome CSS to do the same.
Navigate to Cookie Settings -> Design and then scroll down to the bottom to see Add you custom CSS section. In there place the below code and hit Save Changes.
cookie-banner-cancle-img{display: none !important;}
This will do the trick.
Thanks for the quick response @neelakshsingh
I have added the CSS to the custom css section, cleared website caching and browser cache but the x is still displayed. Do you have any other ideas?
Thanks
No, there is no other way for now, make sure you have hit Save Changes button once to save the css. Also make sure the css property contains !important parameter ( #cookie-banner-cancle-img{display: none !important;} ). Also, keep in mind here the we are targetting the id – cookie-banner-cancle-img, so don’t miss putting the # before it inside the CSS I provided.(#cookie-banner-cancle-img{display: none !important;})
Thank you – adding the # has resolved the issue 🙂