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


<style>
/* shrink product box */
.oct_2016_gold_bg .oct_2016_product_square.js_oct_2016_product {
    background-size: 48%;
    background: url(https://www.rosettastone.com/lp/globals/img/retailboxes/Agnostic_box_DL_24.png) no-repeat #fff -22px 100px;
}

.oct_2016_container.oct_2016_gold_bg { display: none }
</style>


// Make area collapsible
<script>
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>')    
    console.log(arrow_z_index)
})

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