- 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
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
<script>
if ($('.mobile_products_container').css('display') == 'block')
{
return
}
// Remove guarantee badge
$('.guarantee').remove()
// sbsr/ppc default
var bg_position = "-30px 94px!important"
var bg_size = "50%!important"
if (!!window.location.href.match(/learn/))
{
// its catalog. overwrite sbsr
bg_position = "-11px 94px!important"
bg_size = "41%!important"
}
var css = "<style>.oct_2016_gold_bg .oct_2016_product_square.js_oct_2016_product {"
css += "background-position: " + bg_position + "; background-size: " + bg_size + ";"
css += "}</style>"
$('body').append(css)
// Shrink product box
$('.oct_2016_gold_bg .oct_2016_product_square.js_oct_2016_product').css({
'background-position': bg_position
})
$('.oct_2016_gold_bg .oct_2016_product_square.js_oct_2016_product').css({
'background-size': bg_size
})
// 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>')
})
</script>