Wed Feb 21 2018
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
<style>
/* shrink product box */
.oct_2016_gold_bg .oct_2016_product_square.js_oct_2016_product {

    background-position: -30px 94px!important;
    background-size: 50%!important;
}


</style>



<script>

// Hide gold section
$('.oct_2016_container.oct_2016_gold_bg').hide()

// Make area collapsible
var arrow_z_index = -1
$('.rs_classic').click(function() {
   $('.oct_2016_container.oct_2016_gold_bg').slideToggle()
    arrow_z_index = arrow_z_index == -1 ? 500 : -1
    $('body').append('<style>.rs_classic:after {z-index: '+arrow_z_index+'}</stle>')    

})

// Remove guarantee badge
$('.guarantee').remove()
</script>