-
battlemas
Member -
battlemas
MemberHello
Thanks here:
——————————————–
.stc-skin-simple,.stc-skin-circular,.stc-skin-animated,.stc-skin-custom{font-size:13px}}@media screen and (max-width: 800px){.stc-skin-simple,.stc-skin-animated,.stc-skin-custom{font-size:11px}.stc-skin-circular{font-size:12px}}@media screen and (max-width: 480px){.stc-skin-simple,.stc-skin-animated,.stc-skin-custom{font-size:9px}.stc-skin-circular{font-size:11px}}@media screen and (max-width: 220px){.stc-skin-simple,.stc-skin-animated,.stc-skin-custom{font-size:8px}.stc-skin-circular{font-size:10px}}
——————————————–I can change the “max-width: 480px” and it stop getting smaller, thanks!!
-
battlemas
Member -
battlemas
Member -
battlemas
MemberHello
1. recalculate: false,
and
recalculate: true,
Have sane effect no change.2. I added photo with the bug, you can see in bottom image there still free space but it reduces, it is huge problem for my iframe, it keep reducing unless i leave a lot of free space on the left.
-
battlemas
MemberHello
Can you please give me link to it
Thanks
-
battlemas
Member -
battlemas
Member -
battlemas
MemberHello
How you can set it to 1 digit?
Thanks
-
battlemas
MemberHello
How i can increase the font of words in this script thanks:
<html>
<head><link rel=”stylesheet” type=”text/css” href=”time/source/css/counter.helper.css”>
<link rel=”stylesheet” type=”text/css” href=”time/pack/counter.pack.css”>
</head>
<body><div style=”width:800px; border:0px; background:#0; margin: -20px -20px -20px -20px;”>
<div id=”example-monday”></div><script type=”text/javascript” src=”http://code.jquery.com/jquery.min.js”></script>
<script type=”text/javascript” src=”time/pack/counter.pack.js”></script><script type=”text/javascript” src=”time/source/js/counter.helper.js”></script>
<script type=”text/javascript”>
jQuery(document).ready(function() {/* This will be used by all 3 following examples */
var now = new Date(),
dayOfWeek = now.getDay();/* Get next Monday */
var diffMonday = dayOfWeek < 1 ? 1 : (dayOfWeek > 1 ? 8 – dayOfWeek : 7),
nextMonday = new Date(now.getFullYear(), now.getMonth(), now.getDate() + diffMonday);var exampleMonday = jQuery(“#example-monday”).smartTimerCounter({
skin: “Custom”,
mode: “Counter”,
display: {
labels: “bottom”,
hideDots: true,
space: “2px”,
ui_labelBackground: “#FF0000”,
ui_labelWeight: “bold”,
ui_labelColor: “#FFFFFF”,
ui_labelBoxShadow: “0 0 0px 0 rgba(32, 32, 32, 0.7)”,
ui_labelTextShadow: “2px 1px 1px rgba(16, 16, 16, 0.8)”,
ui_digitOverlay: “chrome-128”,
ui_digitRounded: “5px”,
ui_digitBackground: “#CC0000”,
ui_digitColor: “#FFFFFF”,
ui_digitBoxShadow: “0 0 2px 0 rgba(32, 32, 32, 0.7)”,
ui_digitTextShadow: “2px 1px 1px rgba(16, 16, 16, 0.8)”,
ui_digitBorder: “1px solid #660000”,
ui_digitMargin: “1px”
},
model: {
layout: “Normal”,
method: “date”,
value: nextMonday
}
});});
</script>
</div>
</body>
</html> -
battlemas
Member -
battlemas
Member -
battlemas
MemberHello
I want to copy it to button page where coupons are
https://www.mediafire.com/?954z5y7iz8nws55 -
battlemas
MemberHello
The problem is i only have this code
<script type=”text/javascript”>
jQuery(document).ready(function() {
stacks.one = jQuery(“#stac-example-one”).smartTimerCounter({
skin: “FlatPanels”,
mode: “Counter”,
display: {
ui_days_background: “rgba(255, 0, 0, .8)”,
ui_hours_background: “rgba(210, 210, 0, .8)”,
ui_minutes_background: “rgba(0, 164, 15, .8)”,
ui_seconds_background: “rgba(0, 128, 255, .8)”
},
model: {
layout: “Dhms”,
method: “date”,
value: new Date(2014, 6, 1)
}
});
});
</script>I do not know where to put it in my HTML because i need to call to JS files but i do not know how + i do not know where to put the VAR in HTML.
I your files i cannot find on clean sample of html file so i can change there what i need to use it…
Thanks !!
