Brian

Forum Replies Created


Hi Monier,
I replied via ticket system.
Thank you


Sorry, I see you’re using different cookie style, it should be

.cc-btn {
    color: #fff !important;
    background-color: red !important;
    border-color: red !important;
}

You’re welcome


Please give a try with css code like so

article.item.item-page {
    background: red !important;
}

add to custom.css file.


Try this

 .cc-color-override-688238583 .cc-btn {
    color: #fff !important;
    background-color: red !important;
}

Hi Necro,
Did you enable compile less to css feature via template settings before ? Take a look the template settings -> tab Advanced for more detail.


Hi Tiago,
The template itself working fine without problem. Berrykids already included cookie notification feature if you use cookie or you can install 3rd cookie notification for your site.
Thank you


You’re welcome



You can use css code like so

 .cc-floating .cc-message,
 .cc-compliance {
     font-size: 12px;
 }

add to custom.css file.
Thank you


You’re welcome



Sorry, I just modifed the js script and problem solved. The js look like so

jQuery(function ($) {
  $('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
});


This reply has been marked as private, meaning that only the original poster and forum moderators can see the content of the reply.