doing something different with a widget

Discussion in 'Local Business WordPress Theme' started by jigsaw, Mar 21, 2013.

Thread Status:
Not open for further replies.
  1. jigsaw

    jigsaw Guest

    Joined:
    Mar 1, 2013
    Messages:
    18
    Likes Received:
    0
    hi guys,
    I found this widget for a javascript analog clock called coolclock. After seeing what you can do with it I had a great idea. But I need help and information from you. The company logo on my site has letters that form a circle and would make a great background for the clock. I would like to place the clock there but don't know how to do it. If it can be done, through css or whatever, can you tell me where I do it and how?
    my site is http://www.sydneysheetmetal.com.au if you need to see the logo.
    Thank you.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
     
  3. jigsaw

    jigsaw Guest

    Joined:
    Mar 1, 2013
    Messages:
    18
    Likes Received:
    0
    no probs, thank you anyway :)
    is there a way I can add previous/next page buttons?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to blog.php present in your theme directory and add the code given below

    Code:
    <nav id="nav-single"> <span class="nav-previous">
                        <?php next_posts_link(__('&larr; Older posts', 'local-business')); ?>
                    </span> <span class="nav-next">
                        <?php previous_posts_link(__('Newer posts &rarr;', 'local-business')); ?>
                    </span> </nav>
    Sending image for reference

    [​IMG]


    Use same process for others also.
     
  5. jigsaw

    jigsaw Guest

    Joined:
    Mar 1, 2013
    Messages:
    18
    Likes Received:
    0
    hi again,
    will the code you supplied work for static pages?
     
  6. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Yes, You can add this code in all those pages in which you want to add previous/next page buttons.
     
  7. jigsaw

    jigsaw Guest

    Joined:
    Mar 1, 2013
    Messages:
    18
    Likes Received:
    0
    thank you for this :)
     
Thread Status:
Not open for further replies.

Share This Page