battlemas

battlemas

@battlemas

Viewing 14 replies - 1 through 14 (of 14 total)
Author
Replies
  • in reply to: Hello #1682

    Hello

    Ok, i apply this, but here a problem, the “font-size:” changed not only the text but also the clock, i want it to change the text only, or please give me 2 commands one for size of text and one for size of digits in clock.

    Thanks !!

  • in reply to: Resize #1677

    Hello

    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!!

  • in reply to: Resize #1676

    Hello

    What if i want the top screen and i want it to be fixed so it stop be smaller because as you see in photo i attached in last post, the clock getting smaller even when there empty space on left.

    Thanks !!

  • in reply to: Hello #1673

    Yes but there you do not say where to write, only what to write.

  • in reply to: Resize #1671

    Hello

    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.

  • in reply to: digitsdays #1667

    Hello

    Can you please give me link to it

    Thanks

  • in reply to: Hello #1666

    Hello

    Can you please tell me how?

  • in reply to: Resize #1665

    Hello

    Can you please tell me in what documentation thanks !

  • in reply to: digitsdays #1655

    Hello

    How you can set it to 1 digit?

    Thanks

  • in reply to: Hello #1654

    Hello

    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&gt;
    <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>

  • in reply to: Hello #1652

    Ok i found the sample working, thanks for the help !!

  • in reply to: Hello #1651

    – bottom

  • in reply to: Hello #1650

    Hello

    I want to copy it to button page where coupons are
    https://www.mediafire.com/?954z5y7iz8nws55

  • in reply to: Hello #1649

    Hello

    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 !!

Viewing 14 replies - 1 through 14 (of 14 total)