I have this count down code it works just fine, the only problem is it's linking back to tickcounter website. I want to remove that link without breaking the code but it seems impossible, as soon as I'm making any changes nothing shows up in the browser. I can only add inline CSS as I only have access to magento cms. Any help would be highly appreciated! Thank you in advance :)
(function(d, s, id) {
var js, pjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s);
js.id = id;
js.src = "//www.tickcounter.com/static/js/loader.js";
pjs.parentNode.insertBefore(js, pjs);
}(document, "script", "tickcounter-sdk"));
.tcw:after { content: ""; display: block; margin-top: 25%; }
<div class="tcw" data-id="Countdown-38455" style="position: relative; display: inline-block; margin: 0 auto; width: 100%">
<a href="//www.tickcounter.com/countdown/38455/flash-sale" title="FLASH SALE">FLASH SALE</a>
<a href="//www.tickcounter.com/" title="Countdown">Countdown</a>
</div>
The answer is No.
It's not just linking but loading a javascript file directly from ticketcounter website. CSS is not a programming language like JS, inline-css won't get you work done.
If you want to remove that link, you need to include related javascript code to your web page.
Yes can remove that link and put your js. Follow below steps.