Cookie message update

Requirement is to Enable the cookie section for the website record of netsuite. To achieve it create an area in SMt.and add html code.

<div class="cms-content-cms-cookies">
 
  <p class="cms-content-cms-cookies-para"> To provide a better shopping experience, our website uses cookies. Continuing use of the site implies consent.Privacy Policy
  </p>
  
   <img src="https://www.enlightenprofessional.tk/SSP Applications/NetSuite Inc. - SCA 2021.2.0/Development/img/cross image.png" class="cms-content-cms-cookies-close-image">
</div>

<style>
.cms-content-cms-cookies{
  /*width:1440px;*/
  height:109px;
  background-color: #526666;;
}
.cms-content-cms-cookies-para{
  color:white;
  /*width:900px;*/
  height:20px;
  font-family:Roobert;
  margin-left: 41px;
  /*margin-right: 80px;*/
  /*padding-left: 20px;*/
  /*padding-right: 0px;*/
  padding-top:44px;
  padding-bottom:45px;
  display:inline-block;
 }
 .cms-content-cms-cookies-para a{
   color:#0098a7;
 }
 .cms-content-cms-cookies-close-image{
   margin-right:25px;
   margin-top: 45px;
   float: right;
 }
  @media only screen and (max-width: 768px) {
    .cms-content-cms-cookies-close-image {
    margin-top: -23px;
     margin-right:50px;
    }
    .cms-content-cms-cookies {
    height:140px;
    }
    
    .cms-content-cms-cookies-para {
    padding-bottom: 48px;
    }
  }
  @media only screen and (max-width: 350px) {
    .cms-content-cms-cookies-close-image {
    margin-top: -23px;
    margin-right: 5px;
    }
    
    .cms-content-cms-cookies {
    height:130px;
    }
    
    .cms-content-cms-cookies-para {
    padding-bottom: 48px;
    padding-right: 4px;
    margin-left: 22px;
    padding-top: 30px;
    }
  }


</style>
<script>
  $(".cms-content-cms-cookies-close-image").click(function(){
   $(".cms-content-cms-cookies").css("display", "none");
});
</script>

Leave a comment

Your email address will not be published. Required fields are marked *