Reply To: putting clock in a smaller space

Author
Reply
  • #1292

    This is for modification of CSS not JavaScript. All styling is done with CSS, JavaScript has nothing to do with that. So, if you apply jQuery call on an element like this one:

    <div id="my-timer-element"></div>

    You need to add extra styling for it, like this:

    #my-timer-element {
    font-size: 8px;
    }

    Also, you can use that ID as starting point to change any style you might need else for that specific rating element. This is basic CSS, really.

    Milan