Reply To: Hello

Author
Reply
  • #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>