Hi Daniyal,
Thus, including the following CSS instruction in your HTML template should achieve what you desire:
<style>
.otree-timer {
display: none;
}
</style>
Here is a complete HTML example file:
<html>
<body>
<style>
.alert {
font-weight: bold;
color: red;
}
.otree-timer {
display: none;
}
</style>
This should be visible.
<div class="otree-timer alert">
This should be invisible.
</div>
This should be visible.
</body>
</html>
Best,
Holger