I am trying something like this. But it is not helping at all. I double checked that class name is correct. Any help will be appreciated.
<script>
$(window).bind("load", function() {
for(var i=0, len=document.getElementsByClassName('xd_top_box').length;i<len;i++){
document.getElementsByClassName('xd_top_box').style.display='inline-block';
}
});
</script>
I was trying to use jquery but then mixed it up with javascript. jQuery is shorter and much better I think.