1

我有以下问题(欧洲问题)。我想删除 Google 添加到所有 Blogger 模板的标准 Cookie 消息。我设法通过在标题下插入以下 HTML 文本来做到这一点:

<script type='text/javascript'> cookieChoices = {}; </script>

如果您在桌面上打开博客,这确实会隐藏消息。完美的。但是,在 MOBILE 上,不会拾取此 HTML。我已经做的是选择 CUSTOM 视图。然后我在 HTML 的某个地方需要包含一些东西。我知道这个“东西”像这样使用 Mobile on/off:

<b:widget id='Attribution1' locked='true' mobile='no' title='' type='Attribution'/>

然而,我不知道究竟是什么以及究竟在哪里。如果有人能为我解开这个谜,那就太好了!

提前致谢, Arnoud (NL)

顺便说一句,对不起,如果这已经在某个地方得到回答,我找不到它。

4

1 回答 1

0

此链接允许您在一定程度上自定义(并且似乎也替换)欧盟 cookie 消息:STCnetwork.org

或者您可以使用下面的代码。

您可以选择按钮的颜色、按钮文本颜色之外的颜色、背景颜色、阴影和文本大小。

进展如何?

<!--Custom EU Cookies Notice by STCnetwork.org--> 
<script type='text/javascript'> 
  cookieOptions = { 
    msg: &quot;This site uses cookies!&quot;, 
    link: &quot;https://www.blogger.com/go/blogspot-cookies&quot;, 
    close: &quot;Got it!&quot;, 
    learn: &quot;Learn More&quot; }; 
</script> 
    <style>
.cookie-choices-info {
z-index:0000ff!important;
background-color:#0000ff!important;
border-bottom: 1px solid #0000ff;
box-shadow: 1px 2px 2px #000!important;
padding:3px 0px!important;
}
.cookie-choices-text {
font-size:30px !important;
color:#ffffff!important;
}
.cookie-choices-info {
font-size:30px !important;
background-color: #0000ff!important;
color: #0000ff;
border-radius: 1px!important;
box-shadow: 2px 3px 2px #000!important;
padding:6px!important;
text-transform: none!important;
}
.cookie-choices-button {
background-color: #0000ff!important;
color: #0000ff;
border-radius: 1px!important;
box-shadow: 2px 3px 2px #000!important;
padding:6px!important;
text-transform: none!important;
}
</style>
于 2015-10-26T00:03:47.517 回答