We are starting to fill up and we will be sold out before the show...so if you are interested in having a vendor space at Born-Free 5 now is the time to act.There are only 60 days until showtime. We have the vendor agreement form (VAF)on the side bar of the blog, you can download and email back or print and send through the mail. The spaces are all 10 x 20's and are $250.00. Discounts on multiple spaces. You can paypal now @ bornfreeshow@hotmail.com or send check to address on VAF. If you have paid but not sent the VAF you need to asap to be put on the vendor map.
Monday, April 29, 2013
Atten Vendors
We are starting to fill up and we will be sold out before the show...so if you are interested in having a vendor space at Born-Free 5 now is the time to act.There are only 60 days until showtime. We have the vendor agreement form (VAF)on the side bar of the blog, you can download and email back or print and send through the mail. The spaces are all 10 x 20's and are $250.00. Discounts on multiple spaces. You can paypal now @ bornfreeshow@hotmail.com or send check to address on VAF. If you have paid but not sent the VAF you need to asap to be put on the vendor map.
How To Add A Tabbed Navigation Widget to Blogger
The tabviews are elements that allow us to group in a single container various gadgets and these can be selected via tabs.
Its main function is to save space on the blog to avoid scattered gadgets in the same category so you can group multiple gadgets into one. There are several methods for creating tabviews, some require jQuery, other MooTools, or any other script.
To add this widget to your blog, just follow the steps below:
Step 1. From your Blogger Dashboard, go to Template and click on the Edit HTML button
Step 2. Expand the style of the template, by clicking on the sideways arrow before <b:skin> ... </b:skin>
Step 3. Search using CTRL + F for the following tag:
Step 4. Just above it, add the following code:
Step 5. Find the </head> tag and just above it, paste this script:
Step 6. Finally, look for this line:
Or if you use an old template of Blogger, search this line:
Step 7. Paste below one of these two lines, this code:
Step 8. Save changes, and go to Layout and there you will see the new areas to add gadgets.
You just have to click on Add a Gadget to add the gadget to the tab that corresponds, or drag a gadget you already have to that section.
If you want to add more tabs, then just add before the last </div> a line like this:
Note that each line you add should have a different ID, for example Tab5, Tab6, etc..
You can add multiple tabs, just repeat the last step and likewise remember to change the name of the IDs.
Remember that if your sidebar is too narrow, then you should not put a lot of tabs, or tab titles that are very long.
You should also note that this gadget does not speed up the loading speed of the blog, is only to group gadgets into one, even, depending on the blog-may take a while to load the tabview.
Its main function is to save space on the blog to avoid scattered gadgets in the same category so you can group multiple gadgets into one. There are several methods for creating tabviews, some require jQuery, other MooTools, or any other script.
To add this widget to your blog, just follow the steps below:
Step 1. From your Blogger Dashboard, go to Template and click on the Edit HTML button
Step 2. Expand the style of the template, by clicking on the sideways arrow before <b:skin> ... </b:skin>
Step 3. Search using CTRL + F for the following tag:
]]></b:skin>
Step 4. Just above it, add the following code:
/* Tabview for Blogger
----------------------------------------------- */
.tabviewcont{
margin:15px 0;
padding:0;
clear:both;
}
.tabviewnav {
margin: 0 0 0 14px;
padding:3px 0; /* If you are using a Blogger Template change 0 with 15px */
font-size:12px; /* Font size of text inside tabs */
font-weight:bold;
}
.tabviewnav li {
list-style:none;
margin:0;
display:inline;
}
.tabviewnav li a {
padding:3px 6px;
margin-right:1px;
background:#F6F6F6; /* The background color of the tabs */
border-radius:5px 5px 0 0;
-moz-border-radius:5px 5px 0 0;
-webkit-border-radius:5px 5px 0 0;
text-decoration:none;
color:#222222;
}
.tabviewnav li a:hover {
color:#222222;
background:#EBEBEB; /* Background color of the tab on mouseover */
text-decoration:none;
}
.tabviewnav li.tabviewactive a,
.tabviewnav li.tabviewactive a:hover {
background:#EBEBEB; /* Background color of the active tab */
color:#222222;
}
.tabviewcont .tabviewtab {
padding:5px;
border:1px solid #EEEEEE; /* Border around the container */
background:#fff; /* The background color of the gadget */
}
.tabviewcont .tabviewtab h2,
.tabviewcont .tabviewtabhide {
display:none;
}
.tabviewtab .widget-content ul{
list-style:none;
margin:0 0 10px 0;
padding:0;
}
.tabviewtab .widget-content li {
border-bottom:1px solid #ccc;
margin:0 5px;
padding:2px 0 5px 0;
}
Step 5. Find the </head> tag and just above it, paste this script:
<script type='text/javascript'>
// Tabview for grouping gadgets
//<![CDATA[
document.write('<style type="text/css">.tabview{display:none;}<\/style>');function tabviewObj(argsObj){var arg;this.div=null;this.classMain="tabview";this.classMainLive="tabviewcont";this.classTab="tabviewtab";this.classTabDefault="tabviewtabdefault";this.classNav="tabviewnav";this.classTabHide="tabviewtabhide";this.classNavActive="tabviewactive";this.titleElements=['h2','h3','h4','h5','h6'];this.titleElementsStripHTML=true;this.removeTitle=true;this.addLinkId=false;this.linkIdFormat='<tabviewid>nav<tabnumberone>';for(arg in argsObj){this[arg]=argsObj[arg]}this.REclassMain=new RegExp('\\b'+this.classMain+'\\b','gi');this.REclassMainLive=new RegExp('\\b'+this.classMainLive+'\\b','gi');this.REclassTab=new RegExp('\\b'+this.classTab+'\\b','gi');this.REclassTabDefault=new RegExp('\\b'+this.classTabDefault+'\\b','gi');this.REclassTabHide=new RegExp('\\b'+this.classTabHide+'\\b','gi');this.tabs=new Array();if(this.div){this.init(this.div);this.div=null}}tabviewObj.prototype.init=function(e){var childNodes,i,i2,t,defaultTab=0,DOM_ul,DOM_li,DOM_a,aId,headingElement;if(!document.getElementsByTagName){return false}if(e.id){this.id=e.id}this.tabs.length=0;childNodes=e.childNodes;for(i=0;i<childNodes.length;i++){if(childNodes[i].className&&childNodes[i].className.match(this.REclassTab)){t=new Object();t.div=childNodes[i];this.tabs[this.tabs.length]=t;if(childNodes[i].className.match(this.REclassTabDefault)){defaultTab=this.tabs.length-1}}}DOM_ul=document.createElement("ul");DOM_ul.className=this.classNav;for(i=0;i<this.tabs.length;i++){t=this.tabs[i];t.headingText=t.div.title;if(this.removeTitle){t.div.title=''}if(!t.headingText){for(i2=0;i2<this.titleElements.length;i2++){headingElement=t.div.getElementsByTagName(this.titleElements[i2])[0];if(headingElement){t.headingText=headingElement.innerHTML;if(this.titleElementsStripHTML){t.headingText.replace(/<br>/gi," ");t.headingText=t.headingText.replace(/<[^>]+>/g,"")}break}}}if(!t.headingText){t.headingText=i+1}DOM_li=document.createElement("li");t.li=DOM_li;DOM_a=document.createElement("a");DOM_a.appendChild(document.createTextNode(t.headingText));DOM_a.href="javascript:void(null);";DOM_a.title=t.headingText;DOM_a.onclick=this.navClick;DOM_a.tabview=this;DOM_a.tabviewIndex=i;if(this.addLinkId&&this.linkIdFormat){aId=this.linkIdFormat;aId=aId.replace(/<tabviewid>/gi,this.id);aId=aId.replace(/<tabnumberzero>/gi,i);aId=aId.replace(/<tabnumberone>/gi,i+1);aId=aId.replace(/<tabtitle>/gi,t.headingText.replace(/[^a-zA-Z0-9\-]/gi,''));DOM_a.id=aId}DOM_li.appendChild(DOM_a);DOM_ul.appendChild(DOM_li)}e.insertBefore(DOM_ul,e.firstChild);e.className=e.className.replace(this.REclassMain,this.classMainLive);this.tabShow(defaultTab);if(typeof this.onLoad=='function'){this.onLoad({tabview:this})}return this};tabviewObj.prototype.navClick=function(event){var rVal,a,self,tabviewIndex,onClickArgs;a=this;if(!a.tabview){return false}self=a.tabview;tabviewIndex=a.tabviewIndex;a.blur();if(typeof self.onClick=='function'){onClickArgs={'tabview':self,'index':tabviewIndex,'event':event};if(!event){onClickArgs.event=window.event}rVal=self.onClick(onClickArgs);if(rVal===false){return false}}self.tabShow(tabviewIndex);return false};tabviewObj.prototype.tabHideAll=function(){var i;for(i=0;i<this.tabs.length;i++){this.tabHide(i)}};tabviewObj.prototype.tabHide=function(tabviewIndex){var div;if(!this.tabs[tabviewIndex]){return false}div=this.tabs[tabviewIndex].div;if(!div.className.match(this.REclassTabHide)){div.className+=' '+this.classTabHide}this.navClearActive(tabviewIndex);return this};tabviewObj.prototype.tabShow=function(tabviewIndex){var div;if(!this.tabs[tabviewIndex]){return false}this.tabHideAll();div=this.tabs[tabviewIndex].div;div.className=div.className.replace(this.REclassTabHide,'');this.navSetActive(tabviewIndex);if(typeof this.onTabDisplay=='function'){this.onTabDisplay({'tabview':this,'index':tabviewIndex})}return this};tabviewObj.prototype.navSetActive=function(tabviewIndex){this.tabs[tabviewIndex].li.className=this.classNavActive;return this};tabviewObj.prototype.navClearActive=function(tabviewIndex){this.tabs[tabviewIndex].li.className='';return this};function tabviewAutomatic(tabviewArgs){var tempObj,divs,i;if(!tabviewArgs){tabviewArgs={}}tempObj=new tabviewObj(tabviewArgs);divs=document.getElementsByTagName("div");for(i=0;i<divs.length;i++){if(divs[i].className&&divs[i].className.match(tempObj.REclassMain)){tabviewArgs.div=divs[i];divs[i].tabview=new tabviewObj(tabviewArgs)}}return this}function tabviewAutomaticOnLoad(tabviewArgs){var oldOnLoad;if(!tabviewArgs){tabviewArgs={}}oldOnLoad=window.onload;if(typeof window.onload!='function'){window.onload=function(){tabviewAutomatic(tabviewArgs)}}else{window.onload=function(){oldOnLoad();tabviewAutomatic(tabviewArgs)}}}if(typeof tabviewOptions=='undefined'){tabviewAutomaticOnLoad()}else{if(!tabviewOptions['manualStartup']){tabviewAutomaticOnLoad(tabviewOptions)}}
//]]>
</script>
Step 6. Finally, look for this line:
<div class='column-right-inner'>
Or if you use an old template of Blogger, search this line:
<div id='sidebar-wrapper'>
Step 7. Paste below one of these two lines, this code:
<div class='tabview'>
<b:section class='tabviewtab' id='Tab1' maxwidgets='1'/>
<b:section class='tabviewtab' id='Tab2' maxwidgets='1'/>
<b:section class='tabviewtab' id='Tab3' maxwidgets='1'/>
</div>
Step 8. Save changes, and go to Layout and there you will see the new areas to add gadgets.
You just have to click on Add a Gadget to add the gadget to the tab that corresponds, or drag a gadget you already have to that section.
If you want to add more tabs, then just add before the last </div> a line like this:
<b:section class='tabviewtab' id='Tab4' maxwidgets='1'/>
Note that each line you add should have a different ID, for example Tab5, Tab6, etc..
You can add multiple tabs, just repeat the last step and likewise remember to change the name of the IDs.
Remember that if your sidebar is too narrow, then you should not put a lot of tabs, or tab titles that are very long.
You should also note that this gadget does not speed up the loading speed of the blog, is only to group gadgets into one, even, depending on the blog-may take a while to load the tabview.
Petro Moto New Product Release
One of our Top Sponsors for BF5 PETRO MOTO has just released their new Barney's style steel skinny lower legs for 41 mm front ends. These are just like the originals and are available in two lengths and ready to ship. Check out their website for the details. http://www.petrolmoto.com/pb/wp_bd08f091/wp_bd08f091.html Oscar and crew are also planning a party on June 22nd in LA...So if you are coming into town early for the show this will be a good time. Flyer coming soon
...
...
Friday, April 26, 2013
Expandable Recent Comments Widget for Blogger/Blogspot
This Expandable Recent Comments is a very accessible widget that can be collapsed or expanded through user interaction, so that now, we don't have to click on the commenter or post title link in order to see the content of a comment.
The expanding content can be shown or hidden by clicking on the plus/minus icon or by pressing the "Show all" or "Hide all" button at run time.
How To Add The Expandable Recent Comments Widget to Blogger
Step 1. Log in to your Blogger dashboard and go to Layout > Click on "Add a Gadget" link
Step 2. From the pop-up window, scroll down and click on the HTML/JavaScript widget
Step 3. Copy and paste this code inside the empty box:
Note: Replace http://helplogger.blogspot.com with your blog/site address.
Step 4. Save your widget and you're done!
Enjoy :)
The expanding content can be shown or hidden by clicking on the plus/minus icon or by pressing the "Show all" or "Hide all" button at run time.
How To Add The Expandable Recent Comments Widget to Blogger
Step 1. Log in to your Blogger dashboard and go to Layout > Click on "Add a Gadget" link
Step 2. From the pop-up window, scroll down and click on the HTML/JavaScript widget
Step 3. Copy and paste this code inside the empty box:
<style type="text/css" media="screen">
.row-aa { background: #f2f2f3; }
.row-bb { background: #F8F5F1; }
.row-div {
margin:0px;
padding:5px;
}
.comment-header {
font-size:0.9em;
// border:1px solid #E0E0E0;
// background-color:#F3F3F3;
padding:4px;
margin-top:10px;
margin-bottom:5px;
}
.comment-box {
margin:0px;
padding:0px;
font-size:0.9em;
height:500px;
overflow:auto;
}
.comments1 {
// background: #F3F3F3;
padding:3px;
border-left:1px dashed #A6A6A6;
color: #888888;
font-style: italic;
padding-top:4px;
margin-bottom:5px;
}
.comment-footer {
text-align:center;
font-size:0.9em;
padding:4px;
margin-top:5px;
}
</style>
<div style="text-align: center" class="comment-header"><input class="comment-button" id="commshowall" type="button" onclick="if (this.value == 'Show all') { unfold_all(this); this.value='Hide all'; } else { fold_all(this); this.value='Show all'; }" style="width:8em;font-size:1em;font-family:Verdana,sans" value="Show all" /></div>
<div class="comment-box">
<script type="text/javascript" src="http://helplogger.googlecode.com/svn/trunk/expandable-recent-comments.js"></script>
<script type="text/javascript" src="http://helplogger.blogspot.com/feeds/posts/default?start-index=1&max-results=999999&alt=json-in-script&callback=showrecentposts">
</script>
<script type="text/javascript" src="http://helplogger.blogspot.com/feeds/comments/default?start-index=1&max-results=999999&alt=json-in-script&callback=showrecentcomments">
</script>
</div>
Note: Replace http://helplogger.blogspot.com with your blog/site address.
Step 4. Save your widget and you're done!
Enjoy :)
Thursday, April 25, 2013
BF5 Builder Update Yaniv Evan
Yaniv from Power Plant choppers is one of our 32 invited builders for BF5. Yaniv has built some really cool bikes..American as well as British machines.He has a style & flair that screams Hollywood and is a nice addition to a very deverse group of guys. We hope to have some newer updates on his build soon...a video tooWednesday, April 24, 2013
BF 5 Best In Show Award
Hey folks we are pleased to announce that the generous guys from Mooneyes have agreed to reward the BF5 Best in Show winner with a FREE trip with their winning bike to the Mooneyes HRCS in Yokohama Japan.The Moon show is one of if not the premier event in the world. Last year this award was given to Matt Olsen and his incredible Knucklehead.He and his bride Brittany made the trip their honeymoon...This award is open to anyone with a bike at the show not just the BF5 builders. The only thing that's required is you have a Bf5 tag on your bike. This tag is also needed if you want to be part of the many awards that we do. We will have the tags at the show and ready for you...That's it!! Get your bikes done and show up.
Monday, April 22, 2013
Andy Carter BF5 Builder Update
Andy Carter from Pangea Speed in Salt Lake City, Utah is back for his 3rd. time as a BF builder. His last 2 bikes were so unique and innovative he was a definite standout amongst our builders and a fan favorite for the spectators. Andy is kind of a mad scientist of the motorcycle world and is always pushing himself and his bikes to the limit. This years build is well underway and here's a taste of the work he has done and some words from the man....Hi Mike,
I am trucking along on my bike slowly but surely. I have a bunch of work projects that I need to get wrapped up here shortly then I will be in full BF5 mode!
I named the bike MK-ULTRA after the mind control project that the us government started in the early 50's, what does that have to do with motorcycles or whats going on in the chopper world currently..... I will let you figure that out...
So far I have gotten a lot of interesting feed back on this bike, people seem to be surprised that I am building a "period correct chopper". If you go back through the bikes that I have built over the last couple builders series this would seem like a departure from my past bikes. If you zoom out and look at all the bikes that i have built as a whole its pretty clear that i like to dip into all types of motorcycle styles and platforms. This year I felt like it was time to do a bike that pays homage to the bikes that Born Free was designed around. With that being said in my usual fashion I have to throw in a little curve ball.... I get really pumped to see other guys like Jason Phares, Mattias Andersson, Scott Jones, and Brandon Casquilho who are also trying to give something back to the industry by designing and producing their own custom parts. I hope to be able to inspire other people to go build something cool.
What I have here is some pics of the frame, that I have been customizing. I stretched the frame verticly 4 in at the neck and 1.5in at the seat post and deraked the neck so that it sits at about 33 degrees (with the up stretch if I didn't derake it I would be at about 45 degrees)
What I have here is some pics of the frame, that I have been customizing. I stretched the frame verticly 4 in at the neck and 1.5in at the seat post and deraked the neck so that it sits at about 33 degrees (with the up stretch if I didn't derake it I would be at about 45 degrees)
As far as the front end goes I am building my own one off springer using some old model A trailing arms that I have mated to some HD springs and hand made bracing and forward legs.Dave Polgreen hooked me up with this original banana tank that I am restoring, its pretty rough so I took out the tunnel and am knocking out all the dents and then I will weld it back together. I am not going to do much to the tank astheticly minus new mounting tabs. I really like the stance that the tank has the way it is, sometimes less is more. I have gone through the entire transmission during reassembly so that I can guarantee that its all good tip to tail for the person that picks my bike for the giveaway promo.Motor wise I am running a 52 pan that has been stroked to 88in, the motor was built by Randy at Runamuk motor shop here in SLC. Randy builds some of the cleanest motors I have ever seen, his shop is also cleaner than most hospitals that I have seen....STAY TUNED
-Andy Carter
Sunday, April 21, 2013
Todd Asin's BF 5 Pre Unit Build
Like most of the 32 Invited BF5 builders it's crunch time. With just 9 weeks to go these guys are under some serious pressure to get there bikes fabbed and to paint. Todd just sent in these pics right before taking the bike apart and sending it to Harpoon for some magic. If your not a Harley guy Todd's killer Triumph will be in the giveaway promo.Ride this bike out of the show for just 25 bucks. http://www.lowbrowcustoms.com/p2800/buy/misc/born-free-5/born-free-show-born-free-5-poster-amp-ticket-with-free-lapel-pin-while-supplies-last/
Jason Sheets BF5 Update Photos
Jason's VL is getting closer. Here are a few update pics he sent it.If you ever wanted to own a VL now is your chance!!Win this bike on June 29 th. 2013@ Born-Free.
Friday, April 19, 2013
10+ Best Websites To Sell Your Articles On
Many of my writer friends have been writing articles for last 5+ years. Apart from having a lot of experience and expertise in their writing niche, what they have is thousands of unused articles. These articles have never been read by anyone, they are just taking some space in the hard disk.
I understand that fact that not everyone can use everything they are writing about. Some people just don't know anything, some just don't want to make any efforts, some are able to use some of those unused articles.
How about listing some very useful websites where you can sell your unused articles? Yes, straight away selling your articles, I am not talking about posting it somewhere and making money by getting views on it. Let's get to the point and see where you can sell the articles:
1. Constant Content - A great platform to sell all that you have not been using. There are plenty of buyers on Constant Content who are always looking for the articles which best fits their requirement. All you need is to post your articles, use good keywords, and get the sale.
2. Fiverr - Fiverr?? Really? You can create various gigs on your article niche and sell it on fiverr. There are thousands of buyers who would love to buy a relevant article at just $5. Though there are several other websites like fiverr which also provide the same service, but there is nothing effective than fiverr.
3. Own Blog/Website - You can create a list of articles (titles) and post it somewhere on your website or blog. This works great when you have good number of visitors on your website. It will be an add on if you can mention the price so as to help the client taking the decision immediately.
4. Craigslist/Locanto/Other Classifieds - I know it sounds lame and down the level to post on classifieds about selling your articles, but trust me it helps. This works best when you have less cost articles to sell.
5. Article Sale - Article Sale is another website which works similar to Constant Content. Just create an account and sell your articles.
6. Elance or Odesk - Another good option where you can sell your articles. You can go with a common post for all your articles, or be specific to an article in each post. There are thousands of buyers who are always looking to get things done there. If your work fits their requirements, you get a sale.
7. Daily Article - Here is another marketplace where you can sell your articles.
8. Forums - If you are a person who would not mind posting on various forum discussions, it is going to work better for you. There are two things you can do here. First, you can share the links of your posts on other websites regarding selling the articles. Second, you can mention what you want to sell and see if anyone there is interested.
9. Freelancer - Freelance works on the same platform like Odesk and Elance. It is also effective in helping you selling the articles.
10. Facebook/Twitter/Other Social Networking Sites - Another awesome place to sell your articles. Just share the links/posts about your articles and see if anyone of your friends (friends of friends, others) show their interest.
I have always been able to sell my unused articles using all of these together. If you really want it to be effective and want to make it happen at the earliest, I would recommend you to try all 10+ websites I mentioned here.
Do post other relevant websites in comments, if you know of anything else.
Do not forget to FOLLOW, SHARE, and BOOKMARK the Blog.
Kevin Baas BF 5 Builder
It's our pleasure to have one of the all around nicest guys in the business in the Born-Free 5 Builder Invite..Mr. Kevin Baas! Family man,teacher,metal nut and road warrior.Kevin is one of the most enthusiastic/ high energy guys we know and has always been a big supporter of the show.. he even rode his old Knucklehead all the way out from Minnesota a few years ago..in fact he has been all over the country on that thing.We actually change the date of Born-Free to later in June years back to accommodate Kevin and Teachers everywhere.Here is some updates of Kevin's dual carb &dual set up street/drag Panhead. Kevin is also one of the 19 builders that are in the giveaway promo. So get a poster/ w free ticket now and win this bike!! http://www.lowbrowcustoms.com/p2800/buy/misc/born-free-5/born-free-show-born-free-5-poster-amp-ticket-with-free-lapel-pin-while-supplies-last/Thursday, April 18, 2013
BF 5 Builder Update Domenic Mingiruli
This year we have some great builders...also a big variety from all walks of life.We have Masa from Japan, Mattias from Sweden a family thing with the Stopniks and a very unique father ( Domenic) & son(Dylan)dynamic duo. Domenic has motorcycles in his blood, his father( Papa Joe) built well over 300 motorcycles before he left this earth and passed down a wealth of knowledge & passion to him and his grandson Dylan. We will have a builder intro & update on Dylan soon.Domenic has built several awesome bikes over the years( a killer HD golf cart too) and is always willing to teach & share his skills to those seeking help. He is a great guy,with great hair and he smells fantasic. Domenic also won best in show at award Born-Free 2 with his Shovelhead. This year he is building a Panhead chopper & here is a pic of his progress. Video is coming soon. Dom is also part of the BF 5 Giveaway promo so you could own his bike.
Wednesday, April 17, 2013
Born-Free 5 Invited Builder Series-Larry Pierce of Garage Company Customs
We met Larry Pierce and his girlfriend Ashley last year at Born-Free 4 behind their box van where they had been selling moonshine to help pay for gas money for the big trip out west to Born-Free. We had seen some of his stuff in a few of the magazines, but were taken by the bike he built and brought to the show just for fun. Larry seemed to have more than just talent, he was a down to earth dude that embodied the kind of spirit we look for in our invited builders. They have to be more than a pretty face!
Anyway, we are pleased to have Larry join us and our builders for Born-Free 5! Not only that, but you could even take home the 1947 Harley Knucklehead chopper he's building the day of the show, June 29, 2013!!! PLease go visit www.lowbrowcustoms.com to get your poster and ticket combo to have your shot of winning one of 19 motorcycles from our builders!!!!!
Enjoy this video by Daniel Thomas and Show Class Magazine, PLEASE REPOST!
Born-Free 5 Invited Builder Series-Larry Pierce of Garage Company Customs from Born-Free on Vimeo.
Anyway, we are pleased to have Larry join us and our builders for Born-Free 5! Not only that, but you could even take home the 1947 Harley Knucklehead chopper he's building the day of the show, June 29, 2013!!! PLease go visit www.lowbrowcustoms.com to get your poster and ticket combo to have your shot of winning one of 19 motorcycles from our builders!!!!!
Enjoy this video by Daniel Thomas and Show Class Magazine, PLEASE REPOST!
Born-Free 5 Invited Builder Series-Larry Pierce of Garage Company Customs from Born-Free on Vimeo.
BF5 Invited Builder Dave Polgreen
It's great to have Dave back this year in the invite and he also stepped up and committed to be in the giveaway promo too..so if you like Dave's builds and style( check out some of his builds below) you can choose his bike at BF5! Here is what he is building...
The bike is a 1937 UL motor in a VL frame. My aim is to do a pretty traditional-style chopper with my own little flavor added to it. The motor in the pics is not my actual motor, my actual motor is being fully rebuilt as I write, with polished heads and cam cover, wico mag, linkert M51L carb, all the good stuff. The frame is a 30's VL frame that I modified to correctly mount the UL motor. I also changed the backbone to be straight and changed the stress tube to be curved, kinda reversing how they normally look. I did that to be able to mount a tank a little easier and also because a straight stress tube would have looked like shit over the nice curvature of the top of the flathead motor. Front end is a peashooter springer that I'm extending 6". The fork has turned into a really difficult project, but I've never personally seen it done before like this and I think it's really going to make the look of this bike special. The gas tank was painted by Tom Fugle, and once I finish the fab work on the rear fender, he will be painting that too, I'm really excited about that. I don't want to give away the rest of the stuff I am doing, but it's gonna be really nice, I can promise that. Thank You.
The bike is a 1937 UL motor in a VL frame. My aim is to do a pretty traditional-style chopper with my own little flavor added to it. The motor in the pics is not my actual motor, my actual motor is being fully rebuilt as I write, with polished heads and cam cover, wico mag, linkert M51L carb, all the good stuff. The frame is a 30's VL frame that I modified to correctly mount the UL motor. I also changed the backbone to be straight and changed the stress tube to be curved, kinda reversing how they normally look. I did that to be able to mount a tank a little easier and also because a straight stress tube would have looked like shit over the nice curvature of the top of the flathead motor. Front end is a peashooter springer that I'm extending 6". The fork has turned into a really difficult project, but I've never personally seen it done before like this and I think it's really going to make the look of this bike special. The gas tank was painted by Tom Fugle, and once I finish the fab work on the rear fender, he will be painting that too, I'm really excited about that. I don't want to give away the rest of the stuff I am doing, but it's gonna be really nice, I can promise that. Thank You.
Tuesday, April 16, 2013
Hotel Info for Born-Free
We have found two hotel's that are pretty close to the show,decent rooms, rates and ez access to freeways. Howard Johnson in Orange is right off the 55 and Katella ( 15 minutes from show ) http://www.hojoorangeca.com/ and La Quinta Inn in Irvine right off the 5 freeway/Sand Canyon Rd.(about 20 minutes from the show) http://www.lq.com/lq/properties/propertyProfile.do?ident=LQ663&propId=663&iata=99020724&WT.srch=1&sissr=1 The La Quinta Inn is a little more and probably a little nicer and The Howard Johnson hotel is closer and lower rates... Book now because I am sure they will sell out fast.
Subscribe to:
Comments (Atom)































