Showing posts with label tutorials. Show all posts
Showing posts with label tutorials. Show all posts

2.23.2012

Make an origami star lantern

I learned how to fold this paper candle holder by following directions from Passengers on a Little Spaceship, right here. It's quick and fun! I used a 12" x 12" piece of cardstock. It was more difficult to fold than thinner paper, but made a very sturdy lantern. You can experiment with different sizes, colors, and thicknesses of paper. This size was good for a glass votive holder.


2.22.2012

7 pencil-related DIY projects

Do you like pencils? I do. Especially when they're pretty or come in a fancy pouch. Check out these tutorials:

Make colored pencil jewelry with Mini Eco at Design Mom
Drill yourself a rustic pencil holder like Strawberry Chic's
Create striped pencils a la Martha Stewart
Make pencils from paper with instructions from Scissors Paper Wok
Sew a pencil-shaped pencil pouch by Gwenny Penny
Whip up an oilcloth pencil case with Momtastic
Decorate pencils with washi paper using tips from Omiyage

2.16.2012

More DIY cut-paper pendants

Turns out I can do two brainless activities at the same time: watch people pass out on American Idol, and glue small stacks of paper together. I made these pendants last night. Like the pixel heart version, I created a design in Adobe Illustrator, cut a dozen shapes out of cardstock using my Silhouette cutting machine, and glued them into a stack. When the glue dries, the pendant is hard and strong. Each of these is about 2" tall and 1/8" thick. See here for a slightly more detailed how-to.

In the geometric pendant in the first photo above, I sandwiched two "filler" shapes in the center of the pile to add some solid areas.

To download the template files (PDF, .svg, and .dxf for the Silhouette machine), click here.


2.15.2012

Over 10 hours of free video tutorials - Revit 2012 for Interior Architects

With full credit to Digital Tools for Designers, see below 6 classes divided into 7 videos that focus on Autodesk Revit 2012 for Interior Architects.

There is over 10 hours of free Revit instruction here.  It starts at the most basic of topics (user interface), and proceeds to more advanced tasks.

Enjoy!













2.10.2012

A website full of free amigurumi patterns

Continuing the Japanese theme of the last few days, here's another dose of cuteness: AmigurumiPatterns.net. If you like to crochet objects with faces, you'll like this new website. It's a growing museum of free amigurumi patterns from around the web. There's a shop with a few patterns for sale, too, and all the money goes to the pattern creators. I don't know the first thing about knitting or crocheting, but apparently it's possible to decipher these mysterious codes and use them to produce bunnies with mustaches and mushrooms with eyes. Amazing.

1.22.2012

How to Enable Threaded Comments in Customized Blogger-Blogspot Templates



Blogger-Blogspot has recently introduced much-awaited feature of threaded commenting. Now, users can reply to a comment and the comment owner will get an email notification. Naturally, I was also excited about it so, I enabled this feature on my heavily customized template. But it didn't work. I was lucky enough to have an old backup file of Simple Blogger-Blogspot template. After doing some coding, I found it quite easy to integrate the threaded comments in the Simple Blogger-Blogspot template. Please note that this is not a properly tested tutorial. Your template might have different codes. So, follow the steps carefully.

Steps to Enable Threaded Comments in Blogger-Blogspot


  1. First of all make sure that your blog feed is set to Full. You can confirm that by going to Settings > Other and then selecting Full from the Allow Blog Feed dropdown.
  2. You must also have embedded comment form enabled. Check that by going to Settings > Posts and Comments and check the Comment Location dropdown.
  3. After that, open the Template section.
  4. Blogger Updated Dashboard
  5. Warning: Backup your current template before moving on.
  6. Click the Edit HTML button.
  7. Blogger Edit HTML Button
  8. A new window will open. You'd have to click the Proceed button to start editing.
  9. Blogger Proceed Button
  10. Check Expand Widget Templates option.
  11. Find the following line of code:
    <b:includable id='postQuickEdit' var='post'>
  12. Once you've found the above line, you'll see this piece of code:
    </div>
    </div>
    </div>
    </b:includable>
    <b:includable id='postQuickEdit' var='post'>
    Now, we need to add some code just BEFORE the above code. The code to add is:
    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    After adding the new code, overall code should look like this:
    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    </div>
    </div>
    </div>
    </b:includable>
    <b:includable id='postQuickEdit' var='post'>
  13. Now, we need to find the following piece of code:
    <div class='post-outer'>
    <b:include data='post' name='post'/>
    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:include data='post' name='comments'/>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:include data='post' name='comments'/>
    </b:if>
    </div>
    and REPLACE the above code with the following one:
    <div class='post-outer'>
    <b:include data='post' name='post'/>
    <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    <b:if cond='data:blog.pageType == &quot;item&quot;'>
    <b:if cond='data:post.showThreadedComments'>
    <b:include data='post' name='threaded_comments'/>
    <b:else/>
    <b:include data='post' name='comments'/>
    </b:if>
    </b:if>
    </div>

  14. Click Save template and then Close button.


  15. Blogger-Blogspot Save Template Close Buttons
  16. Check your blog. If you can see the option of Reply under each comment then threaded commenting is enabled. Otherwise, upload your backup template.


1.16.2012

DIY macaron coin purse

An addendum to the list of things to sew in the last post: check out these little macaron coin purses. One hundred percent adorable! I want to eat them up. Get the instructions here from Joanne at Craft Passion. You know her. She's the same genius who provided directions for the self-zipping coin purse.

1.13.2012

Sewing tutorial round up

Check out these bag, pouch, and apron instructions, graciously provided by the people of the internet:
Naughty secretary bag tutorial at Sew Sweetness
Urban jungle bag pattern, also from Sew Sweetness
Laminated messenger bag tutorial by Sew Can Do
Boxed pouch how-to from Terrabyte Farm
A Kindle slip case project by Charm Stitch
Shannon's apron instructions from Buttercream and a Sewing Machine

And a bonus: If you share a link to designer Tanya Whelan's pretty new book Sew What You Love, you can choose a free bag pattern to download. Find out more right here.

1.12.2012

Cuteness alert: more kitten origami

I tried another origami neko model from Jo Nakashima—the 3D version of yesterday's flat bookmark. I skipped the step where you shape the cat's back since my crisp paper wanted to crumple. (This is due to my lack of skill, not the fault of the paper, I'm sure.) Follow along with the video tutorial here.

1.11.2012

Make an origami cat bookmark

On You Tube I found video instructions for making a cat bookmark designed by Jo Nakashima. So I tried it out. A couple of the steps were tricky, but I managed to prevail! I think this kitty is funny. He looks like he tried to cross the road at the wrong moment.

1.09.2012

DIY polyhedra: trendy and cool

Geometric 3D solids are popping up around the internet lately. Adorn yourself, your home, or your party with gem pendants and paper polyhedra using these smart tutorials:
Geometric garland at Urban Outfitters
Platonic solids garland from Mini Eco
Glassine gem paper lanterns at Martha Stewart Weddings
DIY geometric necklace by Dismount Creative

12.21.2011

DIY paper snowflake decorations

Somehow my gift wrapping session turned into a snowflake cutting session. I wanted to try making some snowflakes that look a little more 3D than the usual version. These are made with computer paper, a stapler, double-sided tape, and a scissors.

If you've got standard staples that are 1/2" wide, accordian-fold a sheet of computer paper so that the pleats are 8 1/2" wide by about 3/4". If you get to the end of the sheet and have a little extra paper left over, trim it off.

Staple the folded paper as close to the center of the stack as your stapler will reach. Fold the stack in half at the staple and cut off any excess paper from the long side. The staple should now be in the center.

Unless you're using extra thin paper or you have super-human strength, you won't be able to cut through all the layers of paper when the stack is folded in half. So unfold the stack and cut a snowflake pattern out of one half, then repeat for the other half, duplicating your design.

Pull open the accordian folds and join two adjacent ends with double-sided tape, forming a semicircle.

Repeat the process to make the other half of the snowflake decoration, cutting the same design from a second piece of folded paper. Join the two halves together with more tape.

Try making smaller snowflakes from a single piece of paper—put the staple closer to one end of the folded stack and cut more off the other end.

12.17.2011

How to Change Post Title Background Color in Blogger-Blogspot Templates

A reader emailed me and asked about changing the post title background color, so here it is. In this tutorial I'll tell you how to change the post title background color in Blogspot templates. As usual, we'll do some editing in the template's HTML code and after that, you'll be able to change the post background color from Blogger Template Designer. So, here are the simple steps to follow:

Note: These instructions are according to the updated Blogger-Blogspot interface.

Steps to Change Post Title Background Color

  1. Open the Template section.
  2. Blogger Updated Dashboard
  3. Click the Edit HTML button.
  4. Blogger Edit HTML Button
  5. A new window will open. You'd have to click the Proceed button to start editing.
  6. Blogger Proceed Button
  7. Find the following code:
    /* Variable definitions
    ====================
    Replace the above code with the following one:
    /* Variable definitions
    ====================

    <Group description="Post Title Background Color" selector="h3.post-title">
    <Variable name="post.title.bg.color" description="Title Background Color" type="color" default="#222222" value="#eeeeee"/>
    <Variable name="post.title.bg.hover.color" description="Title Hover Background Color" type="color" default="#222222" value="#000000"/>
    </Group>
  8. Save your template and move on the next step.



  9. Now this step is a little different for each Blogger-Blogspot template. So, please follow the instruction according to the template you're using.

    1. For Simple Blogger-Blogspot template, find the following code:
      h3.post-title, .comments h4 {
      font: $(post.title.font);
      margin: .75em 0 0;
      }
      and replace it with the following one:
      h3.post-title, .comments h4 {
      font: $(post.title.font);
      margin: .75em 0 0;
      }

      h3.post-title a, h3.post-title a:visited { background:$(post.title.bg.color); }
      h3.post-title a:hover { background:$(post.title.bg.hover.color); }
    2. For Picture Window Blogger-Blogspot template, find the following code:
      h3.post-title {
      margin: 0;
      font: $(post.title.font);
      }
      and replace it with the following one:
      h3.post-title {
      margin: 0;
      font: $(post.title.font);
      }

      h3.post-title a, h3.post-title a:visited { background:$(post.title.bg.color); }
      h3.post-title a:hover { background:$(post.title.bg.hover.color); }
    3. For Awesome Inc & Ethereal Blogger-Blogspot templates, find the following code:
      h3.post-title, h4 {
      font: $(post.title.font);
      color: $(post.title.text.color);
      }
      and replace it with the following one:
      h3.post-title, h4 {
      font: $(post.title.font);
      color: $(post.title.text.color);
      }

      h3.post-title a, h3.post-title a:visited { background:$(post.title.bg.color); }
      h3.post-title a:hover { background:$(post.title.bg.hover.color); }
    4. For Watermark Blogger-Blogspot template, find the following code:
      h3.post-title {
      font: $(post.title.font);
      margin: 0;
      }
      and replace it with the following one:
      h3.post-title {
      font: $(post.title.font);
      margin: 0;
      }

      h3.post-title a, h3.post-title a:visited { background:$(post.title.bg.color); }
      h3.post-title a:hover { background:$(post.title.bg.hover.color); }
    5. For Travel Blogger-Blogspot template, find the following code:
      h3.post-title {
      margin-top: 20px;
      }
      and replace it with the following one:
      h3.post-title {
      margin-top: 20px;
      }

      h3.post-title a, h3.post-title a:visited { background:$(post.title.bg.color); }
      h3.post-title a:hover { background:$(post.title.bg.hover.color); }



  10. Coding is finished. Save your template.


Lets Change the Post Title Background Color in Template Designer

We've done the coding work. Now, you can simply open the Blogger-Blogspot Template Designer and customize the post title background color.
To open Template Designer, click Customize button. In Template Designer, select Advanced from the left menu. You'll see the Post Title Background Color option at the top. Here, you can preview your changes live. Please note that the change in Title Hover Background Color will not appear in Preview window. You can simply apply these changes to your blog and enjoy :)

12.16.2011

Make a garland from woven paper balls

I love paper Christmas decorations, so when I bumped into The Cheese Thief's woven paper ball tutorial, I had to give it a try. They're curiously addicting. Maybe I should carry some supplies with me to pass the time in long check-out lines, boring holiday parties, or during that weird Choreography number in White Christmas.

These are made out of paper and one piece of tape. You can cut your own strips (mine are 1/2" wide and 11" long, which yields a ball that's about 1 1/4" in diameter) or use shiny paper ribbon.

Hang them individually or glue them onto a wreath form. I'm stringing mine on baker's twine to add to the tree. Taping the end of the twine to a toothpick "needle" makes stringing them easier. I plan to space them out along the string, using a dot of hot glue to hold each ball in place where the twine passes through. Get the weaving instructions here!

12.13.2011

Make your own Christmas decorations

Here are tutorials for a handful of unique holiday decorations. There's plenty of time left to make them... along with shopping and wrapping and mailing and cooking and hosting and visiting. No problem. Right? Try your hand at these projects:

Felt Christmas ornaments at The Purl Bee
Paper bag wreath at Bloesem Kids
Helvetica stockings from Teal & Lime
Amigurumi bear ornaments (make pandas, koalas, and teddies) using this pattern by All About Ami

12.07.2011

How to make an origami Christmas tree

Fans of paper folding will admire Francesco Guarnieri's work, including this fantastic fir tree. Sara Adams of Happy Folding demonstrates how to make it right here. So lovely!

12.06.2011

Easy paper ice cream ornaments

I added some more DIY ornaments to our Christmas tree. I'm having trouble adjusting to the thought of winter; can you tell? These ice cream cones are made from tissue paper and a grocery bag.

To make the cones, cut circles from a brown paper bag. Mine were about 4 1/2 inches in diameter. Cut each circle in half. Shape the semicircles into cones, cutting off any extra paper you don't need (the section that's sticking out in the photo.) Secure the cone with hot glue.

Wad a couple pieces of tissue paper into balls. I used chunks that were roughly 6" x 12", folded them in half, and crumpled them up.

If you plan to hang the ice cream cones, thread a needle with a doubled piece of thread. Poke the needle down through the top of the ball that will be the top scoop, so that a loop of thread sticks out of the top. Secure the loose ends on the underside with a dab of hot glue and trim off the excess.

Line the inside rim of the cone with hot glue and push the bottom scoop into the cone. Spread glue on the underside of the top scoop and add it to the cone. Let the glue dry for a minute and hang it on the tree.

11.22.2011

DIY Cathrineholm candleholders

You're probably familiar with Cathrineholm enamelware, a line of iconic kitchen products made by a Norwegian factory that closed in 1970. Vintage Cathrineholm pieces now cost an arm and a leg. But paper is cheap! Perhaps some DIY votive holders will suffice until we win the lottery?

First I wrapped a glass candleholder with a piece of tracing paper and secured it with tape. Anything white and translucent will do the job; try parchment paper, tissue paper, or vellum if you've got some.

Then I made a template, printed it onto colored computer paper, and cut out the designs with an X-acto knife. My votive holders are 2.5" tall and came in a box from Target several years ago. If you have holders of a similar size, feel free to download the PDF.

Or, if you have a Silhouette machine, you can download the .studio file and scale as needed. Warning: I haven't tested it! If you try to cut with it, let me know how it goes.

Or, if you hate computers, just sketch out the design by hand and wing it. It'll be super.

Layer the cut paper over the white paper and secure with more tape. Done.