Title: WP Clockwork Theme
Last modified: August 19, 2016

---

# WP Clockwork Theme

 *  Resolved [theghostniks](https://wordpress.org/support/users/theghostniks/)
 * (@theghostniks)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/)
 * Hi,
    I need help with my blog description on [http://www.ghostniks.com](http://www.ghostniks.com),
   I am just trying to nudge it over a bit so it is more centered under my .png 
   logo. Maybe even nudge it down a bit. I am using the clockwork theme in wordpress.
   It says on the css that the theme does not use the file…and that’s how I have
   been nudging the description around in other themes…so i am stumped…
 * any help is appreciated!
    -steve

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

 *  [rate4d](https://wordpress.org/support/users/rate4d/)
 * (@rate4d)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289538)
 * I will charge “thanks”
    So you need to add the margin-left property for the blog
   description. 1.Open with text editor wp-content/themes/clockwork/css/carrington-
   text.css ** Find:
 *     ```
       #blog-description {
       	font-size:12px;
       	line-height:12px;
       	margin:0;
       	float:left;
       	clear:both;
       }
       ```
   
 * **Replace:**
 *     ```
       #blog-description {
       	font-size:12px;
       	line-height:12px;
       	margin:0;
       	float:left;
       	clear:both;
       	margin-left:100px;
       }
       ```
   
 * p.s if you need it you can edit the number or add margin top or whatever you 
   want 🙂
 *  Thread Starter [theghostniks](https://wordpress.org/support/users/theghostniks/)
 * (@theghostniks)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289610)
 * WOW, that worked!! Looks great, now!!! Thank you so much!
 *  [rate4d](https://wordpress.org/support/users/rate4d/)
 * (@rate4d)
 * [16 years, 6 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289705)
 * 😉 Glad I could help ya dude, good luck with website
    Help someone else in forum
   🙂
 *  [chaps71](https://wordpress.org/support/users/chaps71/)
 * (@chaps71)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289833)
 * Hello
    I cannot open any of my thumbnail pictures to open a larger image. I have
   tried numberous things and I dont know how to enable this feature. Whenever I
   click on a thumbnail it states “loading”. The large pic never opens Please help!
   Thank you 🙂
 *  [webitdesigns](https://wordpress.org/support/users/webitdesigns/)
 * (@webitdesigns)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289846)
 * Hey guys… sort of unrelated, but it does have to do with the Clockwork Theme.
 * I am trying to find the file/spot where I can switch the way the comments display.
 * Right now, they display the commentators EMAIL Address… I’d rather Display their“
   username”…
 * you can look at my site to see what Im talking about at: roopedog.com
 * Any help would be much appreciated.
    john
 *  [Dave VanderWekke](https://wordpress.org/support/users/dvanderwekke/)
 * (@dvanderwekke)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289848)
 * Hi. I have a question about the Clockwork Theme. I would like to have a page 
   template that doesn’t have sidebars. I see if you don’t add sidebar widgets it
   automatically generates some links for you. I am trying to find out how to add
   a second page template that has no sidebar and will allow the content to expand
   to the full width and not have the sidebar placeholder. I did some reading on
   WorkPress about adding page templates, but this doesn’t seem to work with ClockWork
   Theme. Any guidance would be most appreciated.
 *  [webitdesigns](https://wordpress.org/support/users/webitdesigns/)
 * (@webitdesigns)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289849)
 * dvanderweeke… I’m not aware of any settings that allow for that. I think it would
   have to be custom. I’ve done those sorts of updates to my site’s Clockwork Theme
   and do that sort of stuff for my clients all the time. Create the new template
   page, then comment out/remove the sidebar on that page/template. Then update/
   create the CSS to make the new pags’s content wider.
 *  [Dave VanderWekke](https://wordpress.org/support/users/dvanderwekke/)
 * (@dvanderwekke)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289850)
 * Thanks webitdesigns. I have created a new version of the page without the sidebar.
   Fixed the CSS to auto fill the width. The problem is when I create a page, this
   page template is not available in the Template dropdown. only the default template
   is showing as a choice. I’m just not sure where and how to add this template 
   to the choices.
 * I am assuming it needs to be named a certain way, or needs to be added to the
   code somewhere so it is available. This is the part I am not finding.
 * Any thoughts or direction are most appreciated.
 *  [webitdesigns](https://wordpress.org/support/users/webitdesigns/)
 * (@webitdesigns)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289851)
 * not sure why clockwork would be any different… but usually you do the following:(
   excerpt taken from: [http://codex.wordpress.org/Pages](http://codex.wordpress.org/Pages))
 * “Creating Your Own Page Templates
    The files defining each Page Template are 
   found in your Themes directory. To create a new Custom Page Template for a Page
   you must create a file. Let’s call our first Page Template for our Page snarfer.
   php. At the top of the snarfer.php file, put the following:
 * <?php
    /* Template Name: Snarfer */ ?> The above code defines this snarfer.php
   file as the “Snarfer” Template. Naturally, “Snarfer” may be replaced with most
   any text to change the name of the Page Template. This Template Name will appear
   in the Theme Editor as the link to edit this file….”
 *  [Dave VanderWekke](https://wordpress.org/support/users/dvanderwekke/)
 * (@dvanderwekke)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289852)
 * Tried that earlier and it never showed in the list. I’ll start from scratch again
   and do all the steps to see if I missed something.
 * Thanks for the quick reply!!
 *  [webitdesigns](https://wordpress.org/support/users/webitdesigns/)
 * (@webitdesigns)
 * [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289853)
 * so i guess i’ve been no help… haha!
 * I have run into little things like that with the clockwork theme… I’ll look around
   in those settings files and see if I can find anything… i’ll let you know if 
   I run into anything.

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

The topic ‘WP Clockwork Theme’ is closed to new replies.

 * 11 replies
 * 5 participants
 * Last reply from: [webitdesigns](https://wordpress.org/support/users/webitdesigns/)
 * Last activity: [15 years, 8 months ago](https://wordpress.org/support/topic/wp-clockwork-theme/#post-1289853)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
