RSS

How to add a Twitter share button to your blog

Twitter Button gives you more exposer
Want a Twitter share button on your blog...well here's how.

  • Go to your Dashboard>>Design>>Edit HTML
  • Then check the Expand Widget Template box and start searching your code for this '<div class='post-header-line-1/>' or '<data:post.body/>' and paste your code below it with no spaces
  • Now don't save it yet! 1st you have to change ' your_twitter_username' and replace it with your twitter username while keeping the underscores. 
  • Once you've added your twitter username you can click Save Template. 



This code will post the retweet button on the upper left corner of your blog posts


<div style="float:left;padding:4px;">
<script type="text/javascript">
tweetmeme_style = 'compact';
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'your_twitter_user_name';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
</div>


This code will post the retweet button on the upper right corner of your blog posts


<div style="float:right;padding:4px;">
<script type="text/javascript">
tweetmeme_style = 'compact';
tweetmeme_url = '<data:post.url/>';
tweetmeme_source = 'your_twitter_user_name';
</script>
<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
</div>

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

How to create and place your OWN Navbar in your Blogger Code!

Scroll down the page then look at the top of the screen...notice anything?Yeah that's My Very Own Toolbar! Cool right? So I bet you want one well here's how to get yours...


  • Goto: Apture.com 
  • Then, click the Get Started button and start designing Your own toolbar complete with Your own logo design or you can just type in your blog title.
  • You can also chose the color of your new toolbar. Then you go to your Blogger Dashboard>>Design>>Edit HTML
  • Now that your there start from the bottom of your code and work your way up as you scan for this '</body>' in your HTML code
  • Once you find '</body>' place the code you got from Apture right above that with no spaces in between, and click Save Template.
  • Don't forget to tweet this trick or look follow me on Twitter
 

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Add a Cool Rainbow Effect to all your links!

  • Goto your Dashboard>> Design>> Edit HTML
  • Click Download Full Template so you can click Clear Edits if you mess up with no worry about damage to your blog code
  • Then look for this </head> and right before this paste the code below (FYI: If you search your code from the bottom up you'll find it much faster)
  • Then click Save Template and your Done! Now when someone hovers over one of your links it turn rainbow colors!
  • The part of the code that's highlighted dark blue (var rate=20;) is how fast your links will change from one color to another you can edit the this But The Number Only!
  • Don't forget to share this blog with your friends!




<script type='text/javascript'>

 //<![CDATA[

 var rate = 20;

 if (document.getElementById)
  window.onerror=new Function("return true")

 var objActive;  // The object which event occured in
  var act = 0;    // Flag during the action
  var elmH = 0;   // Hue
  var elmS = 128; // Saturation
  var elmV = 255; // Value
  var clrOrg;     // A color before the change
  var TimerID;    // Timer ID

 if (document.all) {
  document.onmouseover = doRainbowAnchor;
  document.onmouseout = stopRainbowAnchor;
  }
  else if (document.getElementById) {
  document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  document.onmouseover = Mozilla_doRainbowAnchor;
  document.onmouseout = Mozilla_stopRainbowAnchor;
  }

 function doRainbow(obj)
  {
  if (act == 0) {
  act = 1;
  if (obj)
  objActive = obj;
  else
  objActive = event.srcElement;
  clrOrg = objActive.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }


 function stopRainbow()
  {
  if (act) {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }


 function doRainbowAnchor()
  {
  if (act == 0) {
  var obj = event.srcElement;
  while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  obj = obj.parentElement;
  if (obj.tagName == 'A' || obj.tagName == 'BODY')
  break;
  }

 if (obj.tagName == 'A' && obj.href != '') {
  objActive = obj;
  act = 1;
  clrOrg = objActive.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }
  }


 function stopRainbowAnchor()
  {
  if (act) {
  if (objActive.tagName == 'A') {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }
  }


 function Mozilla_doRainbowAnchor(e)
  {
  if (act == 0) {
  obj = e.target;
  while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  obj = obj.parentNode;
  if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  break;
  }

 if (obj.nodeName == 'A' && obj.href != '') {
  objActive = obj;
  act = 1;
  clrOrg = obj.style.color;
  TimerID = setInterval("ChangeColor()",100);
  }
  }
  }


 function Mozilla_stopRainbowAnchor(e)
  {
  if (act) {
  if (objActive.nodeName == 'A') {
  objActive.style.color = clrOrg;
  clearInterval(TimerID);
  act = 0;
  }
  }
  }


 function ChangeColor()
  {
  objActive.style.color = makeColor();
  }


 function makeColor()
  {
  // Don't you think Color Gamut to look like Rainbow?

 // HSVtoRGB
  if (elmS == 0) {
  elmR = elmV;    elmG = elmV;    elmB = elmV;
  }
  else {
  t1 = elmV;
  t2 = (255 - elmS) * elmV / 255;
  t3 = elmH % 60;
  t3 = (t1 - t2) * t3 / 60;

 if (elmH < 60) {
  elmR = t1;  elmB = t2;  elmG = t2 + t3;
  }
  else if (elmH < 120) {
  elmG = t1;  elmB = t2;  elmR = t1 - t3;
  }
  else if (elmH < 180) {
  elmG = t1;  elmR = t2;  elmB = t2 + t3;
  }
  else if (elmH < 240) {
  elmB = t1;  elmR = t2;  elmG = t1 - t3;
  }
  else if (elmH < 300) {
  elmB = t1;  elmG = t2;  elmR = t2 + t3;
  }
  else if (elmH < 360) {
  elmR = t1;  elmG = t2;  elmB = t1 - t3;
  }
  else {
  elmR = 0;   elmG = 0;   elmB = 0;
  }
  }

 elmR = Math.floor(elmR).toString(16);
  elmG = Math.floor(elmG).toString(16);
  elmB = Math.floor(elmB).toString(16);
  if (elmR.length == 1)    elmR = "0" + elmR;
  if (elmG.length == 1)    elmG = "0" + elmG;
  if (elmB.length == 1)    elmB = "0" + elmB;

 elmH = elmH + rate;
  if (elmH >= 360)
  elmH = 0;

 return '#' + elmR + elmG + elmB;
  }

 //]]>

 </script>

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Live Footage of the BP Oil Spill!

Well it's been 85 days since BP screwed up the ocean after an Offshore Oil Drilling Expedition went horribly wrong! Since then BP Global has single-handedly put hundreds if not thousands of people out of work in the Gulf of Mexico and has deterred any if not all beach goers/tourists who were dreaming about soaking up some sun rays after this harsh 2009-2010 winter was finally over.


If any of you are interested here is live footage of the efforts made on BP's part to replace the Oil Containment Cap that they broke along with a counter clock on how many gallons of oil has spilled into the Gulf and how many days it's been since the whole thing started.





                    

                          



p.s - I wrote an article on Offshore Oil Drilling Pros and Cons way before it started Click Here to check it out.
p.p.s - I will continue to update this particular post periodically so bookmark this page, tweet this post, or send a shout out with the facebook button or any of the social netowork buttons. It does doesn't matter how just stay in touch with the TTR Web Matrix for updates!

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

How to Link Your Social Network With Your Blog Posts/Website Updates Automatically

First Click Here, then sign up with them, after that follow the steps...


  1. Give Your Feed a Name. It could be the name of your blog, website or a keyword that best describes your content.
  2. Cut and Paste Your Blog/Website RSS Feed URL. If your using blogger than just go to your homepage then click the 'Post' button under the 'Subscription Gadget' it should open a new page, then copy and paste the URL from that page to the RSS Feed URL box on the sign up form. If your a member of Feedburner then enter that URL into the box and void what I said before.
  3. To authenticate your feed with the social network you chose click the giant blue button that says Authenticate, then using your own login information login in and grant the application access to post.
  4. Your Done! That's it and now every time you post on your blog or update your website it will automatically update your social networking page!  

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

Better Video Uploading, Sharing, and Downloading for Free!

With the economy the way it is today, most of the Google searches are for the cheaper or even Free alternative websites that offer a better deal than retail but are still safe to use. So since I said I would bring you the latest and greatest deals to stretch your endangered Greenbacks I found a site that is legit, has no spyware, and offers Free video downloads for 30 days! Then it's just $4.99 a month after that, No gimmicks, Click Here!
Still skeptical?.. Well I thought you might be so I put together a website to better explain what this free video site is, how to use it, and what ways there are to take a few shortcuts when downloading movies, videos, tv shows, music videos, etc.. That website is called VideoRiddalin you'll be able to learn all you wanna know and then some.

So swing by check it out and explore the website I made for all you savvy shoppers out there looking to save some Greenbacks.





xxxxx
xxxxx
x
x
x


                              Click the Chart Above for More Details :D

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

How to Add a Facebook Share Button to your Blog Posts

Click Here then goto Blogger Dashboard>> Design>> Edit HTML 
Then...

  1. Save Your Template by clicking Download Full Template
  2. Check the Expand Widget Template box
  3. Search your template code for this (< div class='post-header-line-1'/>) or ()
  4. Paste the button code you got from Here directly under the code snippets in step 3
  5. Click Save and your done :)
*Note: Be sure to line up the beginning of the button code(< a name=) with the beginning of the code snippets talked about in step 3.

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS