js же работает с css. Напиши что то вроде:
if (window.location.href.indexOf('checkout') > -1) {
document.getElementsByClassName("cro-block").style.width = "100%";
}
А еще лучше использовать jquery:
if (window.location.href.indexOf('checkout') > -1) {
$(".cro-block).css({"width":"100%", "position": "absolute","bottom": "0", "margin-bottom": "20px"});
}
|