Sunday, March 31, 2013

Related Posts Widget with Thumbnails and Summary for Blogger

There are several tutorials quite old which have explained different methods for displaying related posts in Blogger [1] [2] but in this tutorial, I will show you how to implement a very beautiful Related Posts widget that comes along with Thumbnails and Posts Snippets, as well. If you want to add it, follow the next steps below:

How to Add Related Posts Widget with Summary to Blogger

Step 1. From your Blogger Dashboard, go to Template and click on Edit HTML


Step 2. Tick the "Expand Widget Templates" checkbox:
 Step 3. Find (CTRL + F) this tag:

</head>

...and paste the following code just above it:
<script type='text/javascript'>
//<![CDATA[
var relatedTitles = new Array();
var relatedUrls = new Array();
var relatedpSummary = new Array();
var relatedThumb = new Array();
var relatedTitlesNum = 0;

var relatedPostsNum = 4; // number of entries to be shown
var relatedmaxnum = 75; // the number of characters of summary
var relatednoimage = "https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhun85gEqJSOms8qwY1YDK7WMWgca8kCY0jbdQK9o_5YiXKh9JcfipN63ukYITvgQl1YfFvSUDPtJYLIN9C0SpQ71pLBWOyN9zYYFyvpkcabsxIi049WVGK2aX-gAvirq0_lV9v509er9IY/s1600/no_image.jpg"; // default picture for entries with no image

function readpostlabels(json) {
  var entry, postimg, postcontent, cat;
  for (var i = 0; i < json.feed.entry.length; i++) {
    entry = json.feed.entry[i];
    if (i==json.feed.entry.length) { break; }
    relatedTitles[relatedTitlesNum] = entry.title.$t;
    postcontent = "";
    if ("content" in entry) {
      postcontent = entry.content.$t;
    } else if ("summary" in entry) {
      postcontent = entry.summary.$t;
    }
    relatedpSummary[relatedTitlesNum] = removetags(postcontent,relatedmaxnum);
    if ("media$thumbnail" in entry) {
      postimg = entry.media$thumbnail.url;
    } else {
      postimg = relatednoimage;
    }
    relatedThumb[relatedTitlesNum] = postimg;
    for (var k = 0; k < entry.link.length; k++) {
      if (entry.link[k].rel == 'alternate') {
        relatedUrls[relatedTitlesNum] = entry.link[k].href;
        break;
      }
    }
    relatedTitlesNum++;
  }
}
function showrelated() {
  var tmp = new Array(0);
  var tmp2 = new Array(0);
  var tmp3 = new Array(0);
  var tmp4 = new Array(0);
  for(var i = 0; i < relatedUrls.length; i++) {
    if(!contains(tmp, relatedUrls[i])) {
      tmp.length += 1; tmp[tmp.length - 1] = relatedUrls[i];
      tmp2.length += 1; tmp2[tmp2.length - 1] = relatedTitles[i];
      tmp3.length += 1; tmp3[tmp3.length - 1] = relatedpSummary[i];
      tmp4.length += 1; tmp4[tmp4.length - 1] = relatedThumb[i];
    }
  }
  relatedTitles = tmp2; relatedUrls = tmp; relatedpSummary = tmp3; relatedThumb = tmp4;
  for(var i = 0; i < relatedTitles.length; i++){
    var index = Math.floor((relatedTitles.length - 1) * Math.random());
    var tempTitle = relatedTitles[i]; var tempUrls = relatedUrls[i];
    var tempResum = relatedpSummary[i]; var tempImage = relatedThumb[i];
    relatedTitles[i] = relatedTitles[index]; relatedUrls[i] = relatedUrls[index];
    relatedpSummary[i] = relatedpSummary[index]; relatedThumb[i] = relatedThumb[index];
    relatedTitles[index] = tempTitle; relatedUrls[index] = tempUrls;
    relatedpSummary[index] = tempResum; relatedThumb[index] = tempImage;
  }
  var somePosts = 0;
  var r = Math.floor((relatedTitles.length - 1) * Math.random());
  var relsump = r;
  var output;
  var dirURL = document.URL;

  while (somePosts < relatedPostsNum) {
    if (relatedUrls[r] != dirURL) {

      output = "<div class='relatedsumposts'>";
      output += "<a href='" + relatedUrls[r] + "' rel='nofollow'  target='_self' title='" + relatedTitles[r] + "'><img src='" + relatedThumb[r] + "' /></a>";
      output += "<h6><a href='" + relatedUrls[r] + "' target='_self'>" + relatedTitles[r] + "</a></h6>";
      output += "<p>" + relatedpSummary[r] + " ... </p>";
      output += "</div>";
      document.write(output);
     
      somePosts++;
      if (somePosts == relatedPostsNum) { break; }
    }
    if (r < relatedTitles.length - 1) {

      r++;
    } else {
     
      r = 0;
    }

    if(r==relsump) { break; }
  }
}
function removetags(text,length){
  var pSummary = text.split("<");
  for(var i=0;i<pSummary.length;i++){
    if(pSummary[i].indexOf(">")!=-1){
      pSummary[i] = pSummary[i].substring(pSummary[i].indexOf(">")+1,pSummary[i].length);
    }
  }
  pSummary = pSummary.join("");
  pSummary = pSummary.substring(0,length-1);
  return pSummary;
}
function contains(a, e) {
  for(var j = 0; j < a.length; j++) if (a[j]==e) return true;
  return false;
}
//]]>
</script>
Note:  
  • To change the number of posts that are being displayed, modify the value in red (4)
  • To change the number of characters to be shown in posts summary, modify the value in green (75)
  • To change the default pic for posts with no images, add your URL instead of the one marked in blue

... also paste the code below just above the </head> tag:
<style>
.relatedsumposts {
  float: left;
  margin: 0px 5px;
  overflow: hidden;
  text-align: center;
  /* width and height of the related posts area */
  width: 120px;
  height: 210px;
}

.relatedsumposts:hover {
background-color: #F3F3F3; -webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

.relatedsumposts img:hover {
-khtml-opacity:0.4;
-moz-opacity:0.4;
opacity:0.4;
}

.relatedsumposts a {
  /* link properties */
color: #linkcolor;
  display: inline;
  font-size: 10px;
  line-height: 1;
}
.relatedsumposts img {
  /* thumbnail properties */
margin-top: 2px;
  height: 82px;
  padding: 5px;
  width: 82px;
border: 1px solid #fff;
-webkit-border-radius: 100px;
-moz-border-radius: 100px;
border-radius: 100px;
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}
.relatedsumposts h6 {
  /* title properties */
  display: table-cell;
  height: 5em;
  margin: 5px 0 0;
  overflow: hidden;
  padding-bottom: 2px;
  vertical-align: middle;
  width: 130px;
}

.relatedsumposts p {
  /* summary properties */
border-top: 1px dotted #777777;
border-bottom: 1px dotted #777777;
color: #summarycolor;
  font-size: 10px;
  height: 4em;
  line-height: 1;
  margin: 5px 0 0;
  overflow: hidden;
  padding: 5px 0 15px 0;
  text-align: left;
}
</style>
Note:  
  • Modify the values in red to adjust the width (120) and height (210) of the widget area
  • Replace #linkcolor with the hex value of your color to change the color of post titles
  • To change the size of thumbnails, modify the values marked in violet (82)
  • To determine the border roundness, modify the values in orange (100)
  • To change the color of the post snippet, change #summarycolor with color hex value

Step 4. Search (CTRL + F) for the following fragment:

<a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>

... and add this code just below it:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
    <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
  </b:if>

The entire fragment should look like this:

          <b:loop values='data:post.labels' var='label'>
            <a expr:href='data:label.url' rel='tag'><data:label.name/></a><b:if cond='data:label.isLast != &quot;true&quot;'>,</b:if>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
    <script expr:src='&quot;/feeds/posts/default/-/&quot; + data:label.name + &quot;?alt=json-in-script&amp;callback=readpostlabels&amp;max-results=50&quot;' type='text/javascript'/>
  </b:if>

          </b:loop>

Step 5. Find this fragment of code:

</b:includable>
<b:includable id='postQuickEdit' var='post'>

Note: if you can't find it, then search only for the code in red

! Click on the sideways arrow to expand the code, then scroll down until you reach to the highlighted line !

...add just ABOVE it, add the following:

<b:if cond='data:blog.pageType == &quot;item&quot;'>
  <div class='post-footer-line post-footer-line-4'>
    <div id='relatedpostssum'><div style='text-align: left; font-size: 15px; margin-bottom: 10px; font-weight: bold;'>RELATED POSTS</div>
      <script type='text/javascript'>showrelated();</script>
    </div>
    <div style='clear:both;'/>
  </div>
</b:if>
Screenshot

Step 6. Save your Template... and hopefully we're done...

Enjoy!

Saturday, March 30, 2013

Born-Free Invited Builder Series-Jason Sheets

Jason Sheets is one of our invited builders for Born-Free 5. HE's a soft spoken, talented guy from Hagerstown, Maryland. I started taking note of Jason's work on Instagram and it seemed like he encompassed all the things we look for in our new builders. We finally met when I went to York, PA to the No Dice show last year and I quizzed him on a few things and then popped the question!
We are happy to have Jason and can't wait to see his '31 Harley VL at the show. Enjoy this video by Magic Ken.
Please repost!

Born-Free 5 Invited Builder-Jason Sheets from Born-Free on Vimeo.

11 Best Ways To Increase Your Followers On Your Blog or Website

Hope you have been reading every post on this blog. If not, check all right away as you are surely missing a lot of useful and life-changing information.

To be having maximum number of Followers is something which we all would love. I know good bloggers who have been blogging for last 3 years but have less than 10 Followers. Is it because they have poor content on their website/blog? There can  be multiple reasons behind it. Let's discuss 20 best ways to increase your followers on your blog or website.



1. Install 'Follower' : The first thing you need to start getting followers is to install the 'Follower' widget on your blog/website. If you do not have any widget, you will not be getting any followers even after having a lot of loyal readers.

2. Where To Keep : Good that you are able to get a lot of traffic, but still not able to increase the number of followers? One of the most important things here is to decide on the position of your 'Follower' widget. Having the widget at the footer of the blog may not be effective in any way. Having it somewhere towards the top of the blog is always better as readers get to see that they can follow your blog easily.

3. Done, Because Asked : Promoting anything would need you to be shameless (do not spam). It will not be bad to ask people to follow your blog. Many people will follow if they have been asked to do so. There are three ways to do it. One, email or message your known people and ask them to follow your blog. Two, include a sentence on every post towards the end asking people not to forget following your blog. Three, include your blog link and a message in any comment you post on other websites/blogs.

4. Use(ful)less : If your content is useful, people would want to revisit your blog. When they want to come back, they follow your blog. Indulge yourself in providing quality content.

5. Social Sharing Tools : Allow your readers with multiple options to share your blog. The most common ones are tools like Facebook, Twitter, Stumbleupon, Reddit, Email, Pinterest, etc. If your blog/website do not have one, install it right away. When your blog gets shared with maximum people, you have more chances of getting more followers.

6. Do Not Do Everything : I understand that you are trying to be active on multiple social networking platforms. Do not try doing it everywhere and put yourself in a situation where nothing is working. Focus on four or five platforms and keep working till you make it work.

7. Email Signature : Include your blog link in your email signature. That ways, you will be able to share the information with anyone you are sharing with/replying to an email. 

8. Advertise It : If you do not mind spending some dollars on advertising your blog, you might even get good number of followers with the same. Do not forget to target the right audience for your advertisements.

9. Just Updated : There are plenty of readers who would love to stay connected with a blog which is updated on time with a good post frequency. No one would want to stay connected to some dead blog. Keep posting and stay to the schedule.

10. Blog Community : Join blog communities. This will increase the readers to your blog which will also help in getting increased followers.

11. Last, Not The Least : Keep working on the above mentioned 10 ways to reach a good level. The more you do it, the more followers you will get.

The above ways are surely effective for every single blog/website out there. All you need is to dedicated to it. Happy Blogging :)

If you have not followed this blog yet, do it right away. Do FOLLOW and BOOKMARK the blog.

For any questions/queries/feedback, the 'COMMENT' section below is left active for you.    

Wednesday, March 27, 2013

Jeff's BF5 build

I started building the bike with Franks motor in my head and I knew I had to use a frame that I had been thinking about for awhile. I wanted to build a single downtube frame with all stock dimensions and to look as if Harley made a single down tube Panhead frame. I talked to my good buddy Nick at Wargasser Speedshop about it. Nick offered to let me use his the frame table that he had been building. So I started driving up to Nicks shop every weekend. It was a ton of work and I couldn't have done it without Nicks help and excellent welding skills. I couldn't be happier with how it turned out.

With the frame done I got it up on wheels and started to flush out all my other ideas. I made some riser bottoms to accept Flanders tops. I have my tank mounted with a new tunnel. And part of my fender mounted. It's all moving in the right direction. Still lots to do.















BF 5 Builder Info/Welcome



The Builder Invite is a big draw for the show and a lot of fun but it's also lot of stress,pressure,financial strain and responsibility..Unfortunately we have lost two of our builders..Jasin Phares which is a huge bummer but totally understood and Bill Mize. The good news is we have two very capable guys with full builds underway to fill their shoes. Duane Ballard and his Kawasaki digger/drag bike and Mike Pilacznynski with his 64 Panhead(( Mike's Pan is part of the giveaway promo)). Two great guys that build some really neat bikes and embody the Born-Free spirit.We will have full build updates,bios and videos on these dudes soon.

 
  

Monday, March 25, 2013

10 Things Which Will Make You A Stupid Blogger

As promised in the previous blog Things That Bloggers Need To Do To Make Money Blogging, I am posting those 10 things which will not make you a stupid beginner in blogging.



Let's get into business directly and see those things:

1. Copy Paste job : Blogging is not a copy paste job. I have seen several bloggers (so-called) who will just open an existing blog of their choice and copy paste the content into their own blog. That's what they call updating their blogs. Fellas! No matter how much happy you were while doing that, but that will never gonna earn you even a single penny. Take this seriously that you might even get blocked for doing this, or maybe something legal may come up for you. Copy pasting should be a big no-no.

2. Mighty Hits : Creating a blog and updating it with a nice original post is definitely a good start, but expecting some thousand viewers just after posting it is not practical. Blogging is not an overnight thing, it require time. Do not lose hope even if you are not getting enough views on your posts even after months. Many bloggers stop blogging looking at the initial results. Give it time and it will give you results.

3. Personal stuff's personal : No one (other than your close friends and relatives) have any interest or time to read your personal stuffs (until it gives some moral/message). Ignore posting what you did over weekend, whom do you like in your class, or other crap. Blogging has never been about you, it's about your readers. Make them a part of it than focusing it on you.

4. Promote, don't spam : There is a huge difference between promoting and spamming. Many of the new bloggers will start irritating people with messages over messages on the same thing. It is not bad to inform them of the new posts you have posted, but do not overdo it. Same thing applies while posting comments on other blogs and forums. You should not copy paste a same text to every place.

5. Misleading Blog Title : A perfect Blog Title matters a lot as that's the first thing which tells about your blog. If the title is interesting, people would want to go ahead and read the posts. Do not make it sound stupid and loose anyone who comes to visit your blog.

6. Publishing rarely : "Blogging is my passion, but I do not get much time for it". Are you kidding me? Those wanna be are nothing but time killing bloggers. Many bloggers have the same thoughts and they update their blog once in a month or maybe be in over more duration. That is not going to do anything for you, my dear. Get your ass off and start updating frequently.

7. Absent on social media : You may be using the best possible promotion technique but your loyal base starts with a social media profile. Having your presence on Facebook or Twitter increase your chances to be read by more people.

8. You got it small : You might be posting original post but it should not be too small. I have come across bloggers who just write couple of sentences for every post. Keep in mind that you are posting comments to other blogs, you are writing something for yourself. Your blog post should be at least 150-200 words in size. At the same time, ignore writing Research Paper kind of things as well.

9. Readers? lol : Your readers are very important for you. There are plenty of readers who would love to be loyal to you if you value them. Reply to the comments regularly and keep them engaged. Many bloggers end their blog post with a question for their readers, but never bother to read those comments and reply to you. I am sorry but you are being rude. If they need to read your content, you need them too. So behave!

10. Language sucks : You might be writing the best of the content, but if you are not proofreading your content, your readers are not going to like it. Make it a habit to proofread whatever you post as it does not take more than couple of minutes.

If you are spending couple of hours every week in Blogging, I am sure you are just not passing your time. It is always good to take care of thing which have been mentioned above as that will increase the worthiness of your blog.

If you have anything to add on the above ten points, feel free to post that in the comments.

Any questions? Any concerns? Ask it in the comments.

Do not forget to FOLLOW and BOOKMARK the blog.

Things That Bloggers Need To Do To Make Money Blogging

I swear I will never spam/bore you with anything here. This post is not limited only for Bloggers.

I hope you have checked the previous post 101 best websites for you to make money writing and 36 advertisement publishing websites and have registered for few which fits you the best. 



As rightly said that making money from Blogging is not an overnight thing. I have seen people earning some cents or single figured dollars ever since they started blogging, but do not assume the same for you. Many people have already set loyal readers on Facebook, Twitter, or other social networking websites. If you don't have that set-base for you, no worries at all. 

If you are reading this post, I am assuming that you already have a Blog registered (If not, BOOKMARK this blog and create your right away). Not sure how to create, what to create, how to name, when to post, or have hundred other questions? Calm down and wait for a Bonus Post "10 Things Which Will Not Make You A Stupid Beginner In Blogging" to be posted within 24 hours.

So, all you serious bloggers who just can't wait to start making good money Blogging, check out below things which are very important:

1. Very Much Possible : I started blogging in 2008 with first two posts copied from some other blogs, simply copied. That was surely a bad start in Blogging, forget about making money. But then, when I started understanding what Blogging is really like, I started blogging with my own, very own posts on Self-development. I did try hundred of things to start making some money out of my blog. I came across several scams, lost personal savings, but after all that I had faith that it is possible to make money blogging. There were 50+ things which I did to make my blog/website popular so as to get a good traffic which I am going to share with you all in a future post. All those things started getting me good traffic and my linked Adsense gave me $513 in the first month. So, believing that 'It is possible' is the very important. Do not lose hope as it will happen.

2. Money Ways : You heard of Adsense and linked your Blog with it to make money? Don't tell me that it was the only option with you. That is one of the most common thing I have heard from hundreds of bloggers. Remember, there is no one way to earn money from your blog. Have a look at the below image to see the number of options you have. Details required? Post your question in the comment below and have it answered.

3. Follow That Master : So you think you have got all those great ideas? No! No! You are not right here. Following successful is not a shameful thing until you are not wasting your time and getting some great results. There will be many things which other good bloggers might start doing to make it look better, or to earn more money. See it, Understand it, Accept it, Earn it (only if it's worth).

4. Under That : You cannot just blog about anything around you. People do not like that because they do not get complete thing when you do not have a focus on something specific. Make your own niche and stick to it.

5. Give It Some More Time : "I have posted a new post tonight. I am gonna sleep now and would want to see some hundred dollars earning by morning". Most of the bloggers who have been earning in six figures every year, have been blogging for more than 3 years or more. This was not to disappoint you, just to give you extra motivation to do better. My suggestion would be to start another blog and run it parallel.

6. Hard Work Smart Work : Making Money from your blog would require you to work on it; work should not be hard, it should be smart. For example, if you are working on link building technique to promote your blog, you just cannot start doing it on every single website/blog. If you focus on a specific niche, then it will fetch better results for you. That's gonna be smart work.

7. Join Blog Networks : If you do not post much on your personal blog, then joining Blog Networks makes a lot of sense for you. There are plenty of Blog Networks available on the internet kingdom. Need a list for better use? You will have it from me in few days. You may earn $1500 to $4500 every month blogging for these networks.

8. That's What Works For Me : I have seen people who will look at other's blog, love the theme/concept, create their own blog on the same theme/concept, and expect to be making money from it. Originality pays a lot. Having multiple blogs on the same thing is too irritating for a reader. It may take you some time to realize what works for you, or what you are good at, but trust me when you realize that, it works the best for you. Think on it.

There might be other possible things which might be useful for you to make more money, but these are the MUST ones. Do not think that it can be done in an overnight. It will definitely require your dedication and time. Working with specific tools is always better than working blindly.

If you have anything to add to what I have written, please post it as a comment below so that it can benefit everyone. 

Do not forget to FOLLOW and BOOKMARK the blog.

Token - MC9XH4JZ7RM8

Sunday, March 24, 2013

Born-Free 5 Invited Builder Series Video-Scott "T-Bone" Jones

Next up we are proud to present to you the video on Scott "T-Bone" Jones of Noise Cycles in Santa Ana, California. Scott has worked hard to build up his shop/brand and has his own unique style on everything he builds. We hope you enjoy the video and look forward to seeing his finished bike June 29, 2013 at Born-Free 5!




Born-Free 5 Builder Update (Brittney's Race Bike)

It has been a whirlwind past couple of months.  Things have been going good in the shop and we managed to make some progress on brittneys bike.  In February we drove to Milwaukee and picked up her frame from Mike Lange,  he has been making race bike frames for a very long time.  He modeled brittneys frame off of a race bike that was raced in the twenties and thirties.  Here is a shot of it with the motor and front end installed up in our barn house.


 We ran into a small issue with front end length.  We had originally planned on running an excelsior fork, but it was three inches too long and would have messed up the lines of the bike.   So we bought a jawa front end.   I made some trusses for the front of it, to make it look a little older, kind of like a peashooter fork.
 Here is a solid works drawing of brittneys top tree.  My friend Andre made it from photos of an original peashooter top tree/ handlebar riser set up.  He is really talented.  It is getting carved out of 6061 aluminum this week.

Here is a shot of brittneys cases all polished up.   These are from 1923,  It is hard to believe they are 90 years old.
 
In this photo you can see the original narrowed flywheels in the truing stand.   They flexed too much when we were truing them, so we decided to modify a different set.
 


I went to Florida for the AMCA meet at the beginning of march and hung out with my friend Doc Batsleer, who is an amazing guy who has been racing vintage bikes for years.  He is a wealth of knowledge and a great guy.   He sponsored Brittney's Racing leathers.  This suit was made in Germany and is top notch quality.


Here is the logo that brittney drew for her racing endeavors.  We have a lot of fun stuff planned for this bike and future race bikes, and are both very honored and happy to have the born free show on June 29th be a part of it.   Next month should be pretty exciting,  my friend Lock is flying in to make her gas tanks, and we should have the bike finished and ready for track time some time in May. 

Saturday, March 23, 2013

Builder Spotlight The CZ'S



Scott Stopnik & The Cycle Zombies are building a early 60's Roth inspired full show Knucklehead for Born-Free 5. The Zombies are a Father( Big Scott)two sons (Turkey & Scotty) and a nephew Chase. Skaters,surfers,musicians,artists...these dudes can do it all.The guys all have their hands in this build and all have their rolls... from a early concept sketch from Chase to sourcing the rare parts by Scotty, the Turk's style and influences are all over the bike and the build is in the capable hands of Big Scott. This incredible bike is in our Builder Bike giveaway promo @ BF5 so if it's your taste and your number it's called...you will be riding it home!!  Loser Machine Co. came out and shot these photo's of the guys and did an interview too...Check it out on the Loser Machine blog.. http://www.losermachine.com/blogs/loser-machine

Thursday, March 21, 2013

Jeff Leighton BF5 invite builder bike


At the end of last year i was honored by being asked by Mike and Grant to build another bike for their amazing show. I instantly knew the bike i was going to build. But the story of my build starts long before that. The year was 1965 in Baltimore Maryland and a 13 year old Frank Kaisler had already been bit by the Chopper bug. Frank had been saving all of his money from birthdays and odd jobs for awhile and while searching in the paper he found a Panhead project for sale. He called the guy and went to go look at it. In the guys garage sat a stock Wishbone frame with the motor and transmission sitting in it, being used to hold up half of his work bench. Frank fell in love right away, he gladly handed over $75 and left with the frame, motor, trans, springer, and 2 boxes of parts. He brought the basket case to a friends house in his red wagon, he couldnt store it at his house because his parents wouldnt have let him keep it. A few weeks later he rented a small garage a few blocks from home and started doing what he could to make it into a bike. Frank started helping out around an old timers shop in town learning everything he could while sweeping up the floors. Slowly the bike started taking shape

This is a very early version of the Frank's bike.

                                  

 
The bike didnt stay in one configuration for very long. It evolved as the years went by, basically every winter it was torn down and parts were added and changed. 
                                          
                               






Most of the changes that were made were all about making the bike better. Be it faster, more reliable, stop better. Frank was always trying to hop it up using the newest parts available. The bike was in countless magazines through out the years. Although the the over all look of the bike would change the one  thing that always stayed the same was the motor (the bottom end) and transmission 


About ten years ago Frank pulled the motor out of the chassis to put a hopped up cone shovel in it. He put his original motor in the closet and there it sat. In late 2006 I had the opportunity to meet Frank through my friend Wes White. It changed my life. We became friends while i built my first bike. A 1947 WL chopper with a triumph transmission. Over the last 6 years we have become great friends. Frank is one of the greatest people i have ever met. He has taught me so much, and helped me build every one of the bikes i have done. Last year while sitting around and talking, Frank turned to me and said he wanted me to build a bike out of his original motor. I didn't know what to say, i was totally taken back. I asked how he would like me to build it, he told me that it was my turn to take the motor and build a bike out of it and that i should build what i want to build. Im truly honored and pretty overwhelmed. I told him that i would want put Panheads back on the motor and build a bike in a similar style to the first configuration of his bike. That is what i have set out to do.Over the next few days im going to post a bunch more pics of how the bike is coming along. Stay tuned 
Jeff Leighton

Win This Tank & Fender This Saturday






This Saturday at the Born-Free/LoserMachine Party @ The Garage Company you can win this painted tank and fender set. Harpoon donated many hours of his time( still working on them) and all the materials for us to give it away at the event. You still can buy online until Friday 3/22 and at the event. Buy 2 BF Promo posters w/ tickets and you are entered. We will give this handsome pair away live on Saturday 3/23 about 6 pm. You do not need to be present to win this Set!! Your stubs will go back in the running for the bike promo at Born-Free...but please remember you must be present to win a bike @ BF5. Huge thanks to Harpoon ,Lowbrow,Loser Machine,The Garage Company and the other sponsors for helping with this event. These events are costly and take a lot of work and support to do them right and make them totally free to attend... so again Thank You to all involved.   

Jason Sheets BF5 Builder




Jason is one of our 32 Invited Builders & one of 18 participating builders in the giveaway promo...You Can Win This Bike!!  He is building a modified 30's Harely Davidson VL and it's really coming together nicely. Here is a sneak peek at his build. Jason's video should be ready soon and more updates to come...

Wednesday, March 20, 2013

Hippy Killer Hoedown 4/13/13

The 5th annual HKH is set for April 13 2013 and we are one of many that are sponsoring the event.We will have a BF Booth set up with Posters/Tickets &Merch. Come out and support this event. There will be a Dice party Friday night too!! Visit the HK Blog for all the details http://hippykillersgarage.blogspot.com/   

36 Best Advertisement Publishing Websites For Blogs or Websites To Make Money

Hope my last post 101 Best Websites To Make Money Writing Articles  stood helpful for many of you. 

Even though Blogging has become common these days, but the internet world always welcomes good blogs. There are more than 50000 blogs being created daily on blogging websites like Blogger.com, Wordpress.com, and many more. Out of the millions of blogs, only thousands are able to make good money from the posts; rest are just struggling to reach a double figure earnings for a month or even the year.


Having said that, I do not want any of you passionate writers to feel demotivated. There are plenty of things which you need to take care of besides blogging. We will be discussing the same in our next post "Things The Bloggers Needs To Do To Make Good Money Blogging" to be posted on 25th March, 2013. Mind it, that post will really change the way you look at Blogging and will really help you make good money.

Coming back to you serious bloggers, I am going to mention the Advertisement Publishing websites below which will help you link you blogs to them. And what happens with that? The Ad Publishers will post the advertisement on the dedicated spaces on our blogs, and whenever anyone clicks on those Ads you earn some money. 

A big NO is to ask people to click on those Ads, or else you will be blocked forever for using any Ad Publisher for your blog (You should also not click on your Ads yourself). Take my words seriously, or you will regret.

So here are most of the useful Advertisement Publishing websites for you:

1. AdSense : Undoubtedly, the King of its Kind. AdSense is operated by Google and is very very strict with its Rules, Regulations, and Policies. Read everything carefully before you start with them. Most of the blogging websites are linked with it, and you may see the option to activate AdSense somewhere in the Dashboard/Main page. They take a week to review the applications. Once approved, you can activate it on your blog. 

2. Adbrite : Looks very much like AdSense and has many extra good features. Not to mention, they do not have wide range of Ad Format to be considered while using it on your blog.

3. Bidvertiser : Being a very close alternative to AdSense, they are really good features which the customization of the Ad dimensions. The unique feature is the displaying of Higher Paying Ads on the top followed by Lower Paying Ads.

4. Chitika : Another good website which helps you make good money. I started using this website in 2010, used it for couple of months, and decided not to be using it as it was not at all effective. The recent changes in the website have got it a new life and is really helpful in making good money. I checked my old account few days back and found a double figured earning there even after having an inactive blog associated to it.

5. Yahoo Publisher Network : Yahoo can never stay back when Google has already done something. It can be an excellent website just like AdSense as it looks like they work on the same rules and policies as AdSense. 

6. AdToll : The best thing about them is the modes of payment. While many other websites do not pay via Paypal in countries like India, Srilanka, and other Asian countries, they have this option to even pay via Paypal, or Wired transactions.

7. Clicksor : They are considered to be pay masters, but you got be having luck with skills to make good money here.

8. Infolinks : This website is very much like Clicksor but seems to be having better payouts.

9. AdMedia : With a minimum payout of $25, they are very much new in the market. They have comparatively lesser paid ads. It is recommended not to try it until you are really done with rest options.

10. Text-link-ads : It has a good number of advertisers linked to it which means you blog may rarely be seen without having any Ads on it.

11. Kontera : If you do not care about the kind of Ads shown on your blog, you can go with Kontera. It has a messy way of publishing Ads on your blog where it looks like Spams to your readers. 

12. Vibrant Media : Very much like AdSense but they have lesser Advertisers which means lesser Ads on your blog.

13. Adwager : Works on the similar layout as AdSense, but nowhere close to it in terms of earnings. You can try it if you are blocked/ineligible for AdSense.

14. TNX : I have never tried this website, but seems to be a good platform for fresh bloggers.

15. Widget Bucks : If your blog falls under the 'Shopping' category, give it a try. Rest bloggers can have a look at it and try only if it fits you/

16. Casale Media : One of the options of you do not like Text Ads and like only Banner Ads. They work on the eCPM principle. What is eCPM? In simple words, you earn as per views, not as per clicks on the Ads. It is actually better when your blog has good number of viewers. It is like assured income as per traffic.

17. Adversal : Another websites based on eCPM. They have Pop-up based Advertisement where you can earn $6 per 1000 views.

18. Target Point : Never tried, but give it a try.

19. Bid Clix : Another good website under the category.

20. All Feeds : Never tried, but give it a try.

21. Adhearus : Another good website but have very less Advertisers.

22. Affiliate Sensor : Very less Advertisers, but good payout.

23. Veoda : Never tried, but give it a try.\

24. Revenue Pilot : Never tried, but give it a try.

25. Kanoodle : Never tried, but give it a try.

26. Enhance Interactive : Never tried, but give it a try.

27. Quigo : Never tried, but give it a try.

28. Intellitxt : Completely based on the Text Ads. This website is quite new in the market and has very less Advertisers.

29. Nixxie : Never tried, but give it a try.

30. Info Grabber : Never tried, but give it a try.

31. Miva : Never tried, but give it a try.

32. Search Feed : Never tried, but give it a try.

33. Fast Click : Never tried, but give it a try.

34. Click Thru Traffic : Never tried, but give it a try.

35. Exit Junction : Never tried, but give it a try.

36. Adonion : Never tried, but give it a try.

These are most of the useful Advertisement Publishing websites which you can link your blog to and start making money. If you aware of any other website from the category, please share with us in the comments.

How to be making good money? We will discuss that in another post to be posted very soon.

FOLLOW the blog to make sure you do not miss on any good post.

BOOKMARK US.  Do post a COMMENT if you like the post.

Tuesday, March 19, 2013

CSS Basics. How to Apply Rounded Corners On Images #2

blogger tricks, css tricks, border radiusIn the previous post I have mentioned that we will learn to round images using CSS, without needing to edit them one by one using a program. Now that we have seen the basics of CSS, let's try to apply to some images.

What we will do is to upload an image as normal (HTML) and then add some rules in our style sheet that will transform the outer shape as a circle... or at least to appear round. This will depend on the proportions of image that we use.

In fact, we can apply this effect to any image, to all of an area or to all in our blog. That depends on your tastes.

Marking up HTML

Obviously the first thing we need for in order to round an image is an idem. The code could be more complicated, but an image is built within the img tag and basically looks like this:

<img src="image_URL"/>

Screenshot:




This is how we make it look something like the one from the left. Normally, it should also keep an alt text and sometimes it carries some forced dimensions (with width and/or height). When you upload an image, the code inside the Blogger editor also contains a link that is pointing to the original image.

But if we want to modify this image using CSS, we need to incorporate a class selector. We can add it in two ways: within the img tag or to a parent box. The name that I have chosen for the selector is roundedcorners:

<img class="roundedcorners" src="image_URL"/>


<div class="roundedcorners">
<img src="image_URL"/>
</div>


Applying style to all homogeneous elements

But that selector alone will do nothing. It needs to be linked to a style rule that tells what to do with it. As much as we add classes, if these are not defined in the CSS, the appearance of the image (or a certain element) will not change.

To change the shape of all the images on our blog, this would be what we should add to our CSS:

img {
border: 2px solid #BADA55;
margin: 0;
padding: 0;
border-radius: 900px;
-moz-border-radius: 900px;
}

And how it translates to your browser? As follows:

Search for images by name tag (img) and apply the following style:
  • a solid green border of 2 pixels
  • margins (space outside the border) and padding (space inside the border) is set to zero
  • the image is round at the four corners

Now that we have this rule in our style sheet itself, we can see the picture as we wanted - see the example on the right.

To declare a property correctly, we need to know what it does and how to write and you can find more info in many places, although W3C is the authority in this.

For example border-radius requires initially 4 values reading from left to right that represent the roundness of the upper-left, upper-right, lower-right and lower-left corner. If you put a single value is understood that all four will be equal to that.

You should also know that when the value of the border exceeds the dimensions of the box, this border is adapted to form a circle.

How to Apply Style to the Elements of the Same Block

But surely we do not want all the blog images to be round, but only those that we choose, otherwise adding the above style in the head tag will make all of our blog images to take this shape. Before we used an HTML tag (img) and not a selector and that is why the style will affect all images.

To avoid this, we can do one of the things we saw at the beginning and that was to put the image inside a div with the roundedcorners class. In this way, only the images that are in a box with that class will be affected by the rule that will make them round.

<div class="roundedcorners"><img src="image_URL"/></div>

But the rule then should not attack the img tag directly, but the roundedcorners selector. In this case, you should write it like this:

.roundedcorners img {
border: 2px solid #BADA55;
....
}

This means that this style applies only to images that are in a box with roundedcorners class.

Epilogue

To close the subtopic of rounding images, you have to keep in mind that if these are not square, instead of becoming circular, they will look oval.


To fix this we should add the width and height with the same measure (value in pixels), that is to force the image cropping and to make it appear perfectly circular. That was all!

If you enjoy reading this blog, please share and subscribe. For any questions, drop a comment below ;)