Understanding is good only if it is distributed. As a new writer, I have acquired to modify the Web style, and found out the guidelines, methods, hackers, and changes of modifying the Blogger style, creating CSS, icons, structure, site style, placing JavaScripts, HTML requirements, The search engines AdSense, and other configurations the hard way, through many tests and mistakes. For the requirements of this information, I have began with the new “Minima” style. As I make the changes or learn something new, I shall papers them. Before modifying any style, please you should preserve a duplicate of the present style. After modifying the style, review it, and preserve it when you are fulfilled with the modify. Wish this information will help those who are discovering the way around, just like me.
Tips for New Bloggers
Understanding is good only if it is distributed. As a new writer, I have acquired to modify the Web style, and found out the guidelines, methods, hackers, and changes of modifying the Blogger style, creating CSS, icons, structure, site style, placing JavaScripts, HTML requirements, The search engines AdSense, and other configurations the hard way, through many tests and mistakes. For the requirements of this information, I have began with the new “Minima” style. As I make the changes or learn something new, I shall papers them. Before modifying any style, please you should preserve a duplicate of the present style. After modifying the style, review it, and preserve it when you are fulfilled with the modify. Wish this information will help those who are discovering the way around, just like me.
2
comments
Posted by
Power Lab
Labels:
Blogger Tips
Blogger tip Jar Widget
ScratchBack is a helpful on the internet "tipping system" for web owners who want to create a money from their sidebar. It's a fantastic option to a "Paypal Donation" option, because your prospective holds will be enticed by a beneficial compensate. This compensate is a awesome fat backlink to their website which no writer can fight.
How it Works:
First you will need to join and set up their gadget value on your website. Once you've integrated the value into your site you should be able to see a perfectly scaled gadget in your sidebar. This should only take moments to get your self up and managing. Their method allows you to take guidelines from promoters and in come again they will get picture or backlinks on your website.
Payout Rate:
The present payment method has been moved from 50% to 90% for the manager. This is an insanely amazing ratio! So you'll create 9 out of every 10 $ $ $ $ marketed on your website (payments created via PayPal).
Customization
:
You might run in to issues when it comes to mixing the gadget in with your site. Other than that, they allow you to select from several styles, and some of which are decent looking. And the relax of the styles have a bit of a junky look to them, so don't get too energized...
My Encounter with ScratchBack:
To be sincere, I have only used it on WidgetsForFree™ for one day and I created only 2 $ $ $ $. So I will have to depend on my visitors to provide us some sincere reviews on the long run use of Scratchback. Although, I might try it out once the gadget is completely custom and is able of corresponding my site style.
Sign Up for ScratchBack
5
comments
Posted by
Power Lab
Labels:
Make Money blog
Auto Read More Button For Blogger With Thumbnail
Automatic Read More Button For Blogger With Thumbnail
Find the closing </head> tag in your blog template, and paste the following section of code immediately before it:
<script type='text/javascript'>var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 100;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>Note in above codes we can change the numeric numbers according to our need
summary_noimg = 430; is post cut height without image
summary_img = 340; is post cut height with image
img_thumb_height = 100; is thumbnail image height
img_thumb_width = 120; is thumbnail image width
Now find this code <data:post.body/> in your template and replace it with below codes.
<b:if cond='data:blog.pageType == "static_page"'><br/>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");
</script> <span class='rmlink' style='float:right;padding-top:20px;'><a expr:href='data:post.url'> read more "<data:post.title/>"</a></span>
</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
</b:if>
Preview Your template if its showing thumbnail with read more hack Save it.
I am sure everybody will love this hack for sure.
<script type='text/javascript'>var thumbnail_mode = "no-float" ;
summary_noimg = 430;
summary_img = 340;
img_thumb_height = 100;
img_thumb_width = 120;
</script>
<script type='text/javascript'>
//<![CDATA[
function removeHtmlTag(strx,chop){
if(strx.indexOf("<")!=-1)
{
var s = strx.split("<");
for(var i=0;i<s.length;i++){
if(s[i].indexOf(">")!=-1){
s[i] = s[i].substring(s[i].indexOf(">")+1,s[i].length);
}
}
strx = s.join("");
}
chop = (chop < strx.length-1) ? chop : strx.length-2;
while(strx.charAt(chop-1)!=' ' && strx.indexOf(' ',chop)!=-1) chop++;
strx = strx.substring(0,chop-1);
return strx+'...';
}
function createSummaryAndThumb(pID){
var div = document.getElementById(pID);
var imgtag = "";
var img = div.getElementsByTagName("img");
var summ = summary_noimg;
if(img.length>=1) {
imgtag = '<span style="float:left; padding:0px 10px 5px 0px;"><img src="'+img[0].src+'" width="'+img_thumb_width+'px" height="'+img_thumb_height+'px"/></span>';
summ = summary_img;
}
var summary = imgtag + '<div>' + removeHtmlTag(div.innerHTML,summ) + '</div>';
div.innerHTML = summary;
}
//]]>
</script>
summary_noimg = 430; is post cut height without image
summary_img = 340; is post cut height with image
img_thumb_height = 100; is thumbnail image height
img_thumb_width = 120; is thumbnail image width
Now find this code <data:post.body/> in your template and replace it with below codes.
<b:if cond='data:blog.pageType == "static_page"'><br/>
<data:post.body/>
<b:else/>
<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary" + data:post.id'><data:post.body/></div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");
</script> <span class='rmlink' style='float:right;padding-top:20px;'><a expr:href='data:post.url'> read more "<data:post.title/>"</a></span>
</b:if>
<b:if cond='data:blog.pageType == "item"'><data:post.body/></b:if>
</b:if>
Preview Your template if its showing thumbnail with read more hack Save it.
I am sure everybody will love this hack for sure.
0
comments
Posted by
Power Lab
Labels:
Widget Blogger
Free Blogger Templates 2012
Free Blogger Templates 2012 :JOHNY DARKGAMER
Platform Type Blogger / Blogspot
Template Name Johny Darkgamer Layouts 2012
Instructions URL How to set up Gon Journal Xml Theme
Template Author http://johnytemplate.blogspot.com/
Designer http://creatingwebsite-maskolis.blogspot.com/
Descriptions Simple, Multiple Sidebar, 3 Pillar, Dark-colored, Presented Area, Set size, Dark-colored, Journal, Right Sidebar, Slide show, Top Routing Bar, simple running, SEO prepared, vehicle readmore and more.
PREMIUM GALLERY TEMPLATE
Design Information :
Platform Type Blogger / Blogspot
Template Name Premium Collection Writer Style
Instructions URL How to set up Top quality Collection Writer Theme
Template Author http://www.btemplatebox.com/
Designer http://www.btemplatebox.com/
Descriptions
0
comments
Posted by
Power Lab
Labels:
Blogger Templates
Tablet Computer sales to hit 208
million in 2014
According to market research firm Gartner, sales of tablet computers like Apple’s IPAD are expected to soar from nearly 20 million units this year to 55 million next year and over 208 million in 2014. Gartner said that north America will account for 61 per cent of tablet computer sales this year but its share will drop to 43 per cent in 2014. Apple began selling its IPAD in April and a number of other companies have announced plans to begin producing similar multimedia devices, which can be used to surf the web, read electronic books, watch video and more.
Gartner said that the explosion in the tablet computers will impact sales of devices in other segments including net-books – the small laptops also known as mini-notebooks. Gartner research vice president Carolina Milanesi said that the all-in-one nature of media tablets will result in the cannibalization of other consumer electronics devices such as e-readers, gaming devices and media players and especially net-books, as the average selling prices of media tablets drop below 300 dollars over the next years.
Gartner said that the explosion in the tablet computers will impact sales of devices in other segments including net-books – the small laptops also known as mini-notebooks. Gartner research vice president Carolina Milanesi said that the all-in-one nature of media tablets will result in the cannibalization of other consumer electronics devices such as e-readers, gaming devices and media players and especially net-books, as the average selling prices of media tablets drop below 300 dollars over the next years.
0
comments
Posted by
Power Lab
Labels:
Apple
Buy IPHONE 4 Replica in Rs.6,500/- only in Pakistan
Yesterday i was visiting a Pakistani shopping website which was selling IPHONE 4 in onlyRs.1,20,000/- which is obviously out of range from middle class people. IPHONE 4 price in Pakistan is quite high now because its has been launched by Apple recently. Although gurus says that IPHONE 4 price will reduce in a couple of months time but it still would be very expensive some thing like Rs.70,000 to Rs.80,000 range. But today i am going to tell you a Pakistani website where you can buy IPHONE 4 Replica in only Rs.6,500/- only.
Symbios.pk is a well know Online Pakistani shopping website where you can buy almost everything online in Karachi, Lahore, Islamabad, Rawalpindi or any where in Pakistan. IPHONE 4 Replica they are selling is carbon copy of original IPHONE 4 from Apple. It has all the features Original IPHONE 4 has accept Apple IOS 4 which is Apple operating system for mobile phones. IPHONE 4 Replica has its own Java operating system which of course not user friendly. But IPHONE 4 Replica has an advantage over original IPHONE 4 and that is Dual SIM option. So all in all IPHONE 4 Replica in the price range of Rs.6,500/- is very affordable and you can enjoy and tell your friends that you have the latest and expensive mobile phone gadget available in the market.
https://www.facebook.com/pages/Scene-3dworld/181623938551825
https://www.facebook.com/pages/Scene-3dworld/181623938551825
https://www.facebook.com/pages/Scene-3dworld/181623938551825
1
comments
Posted by
Power Lab
Labels:
Apple
Apple IOS for IPad, IPhone and IPod
Formerly called IPhone OS, IOS is Apple’s mobile operating system originally developed for the IPhone, and later deployed on the IPod touch and IPad as well. It is derived from Mac OS X, with which it shares the Darwin foundation, and is therefore a Unix-like operating system by nature. The IOS has four abstraction layers; the Core OS layer, the Core Services layer, the Media layer and the Cocoa Touch layer.
Back in 2007, cynics dismissed the iPhone as a niche gadget that would have no major effect on the mobile industry. However, IPhone’s steady gains in the market share and influence in setting expectations, particularly on the user interface side, forcing other manufacturers to rush out their own touchscreens and app stores, proved how wrong their predictions were.
Back in 2007, cynics dismissed the iPhone as a niche gadget that would have no major effect on the mobile industry. However, IPhone’s steady gains in the market share and influence in setting expectations, particularly on the user interface side, forcing other manufacturers to rush out their own touchscreens and app stores, proved how wrong their predictions were.
Despite revolutionizing the mobile phone market, Apple is now being criticized for appearing to have run out of new ideas to make the IPhone better than the rest. Though Apple has been growing rapidly over the last three years, they need to keep “thinking different”, rather than being limited by the new features they are putting on to the new product. Often newer features are crippled by Steve Jobs aim for perfection. Case in point: The IOS 4 supports multitasking, which though is a definite jump for the IPhone, came long after the Android, which had it right from the beginning.
0
comments
Posted by
Power Lab
Labels:
Apple
Apple Release IPad 2
Apple Release IPad 2
Apple launched version 2 of IPad today and it will be officially released on 11 March 2011. The new version is Thinner, lighter, and full of great ideas. Its price is Rupees 60,000/- only in Pakistan. Once you pick up iPad 2, it’ll be hard to put down. That’s the idea behind the all-new design. It’s 33 percent thinner and up to 15 percent lighter, so it feels even more comfortable in your hands.2 And it makes surfing the web, checking email, watching movies, and reading books so natural, you might forget there’s incredible technology under your fingers.
Dual-core A5 chip. It’s fast, times two.
Two powerful cores in one A5 chip mean iPad can do twice the work at once. You’ll notice the difference when you’re surfing the web, watching movies, making FaceTime video calls, gaming, and going from app to app to app. Multitasking is smoother, apps load faster, and everything just works better.
Dual-core A5 chip. It’s fast, times two.
Two powerful cores in one A5 chip mean iPad can do twice the work at once. You’ll notice the difference when you’re surfing the web, watching movies, making FaceTime video calls, gaming, and going from app to app to app. Multitasking is smoother, apps load faster, and everything just works better.
Superfast graphics. Go, gamers, go.
With up to nine times the graphics performance, gameplay on iPad is even smoother and more realistic. And faster graphics help apps perform better — especially those with video. You’ll see it when you’re scrolling through your photo library, editing video with iMovie, and viewing animations in Keynote.
With up to nine times the graphics performance, gameplay on iPad is even smoother and more realistic. And faster graphics help apps perform better — especially those with video. You’ll see it when you’re scrolling through your photo library, editing video with iMovie, and viewing animations in Keynote.
Battery life keeps on going. So you can, too.
Even with the new thinner and lighter design, iPad has the same amazing 10-hour battery life.1 That’s enough juice for one flight across the ocean, or one movie-watching all-nighter, or a week’s commute across town. The power-efficient A5 chip and iOS keep battery life from fading away, so you can get carried away.
Even with the new thinner and lighter design, iPad has the same amazing 10-hour battery life.1 That’s enough juice for one flight across the ocean, or one movie-watching all-nighter, or a week’s commute across town. The power-efficient A5 chip and iOS keep battery life from fading away, so you can get carried away.
Two cameras. And a big hello to FaceTime for iPad.
You’ll see two cameras on iPad — one on the front and one on the back. They may be tiny, but they’re a big deal. They’re designed for FaceTime video calling, and they work together so you can talk to your favorite people and see them smile and laugh back at you.3 The front camera puts you and your friend face-to-face. Switch to the back camera during your video call to share where you are, who you’re with, or what’s going on around you. When you’re not using FaceTime, let the back camera roll if you see something movie-worthy. It’s HD, so whatever you shoot is a mini-masterpiece. And you can take wacky snapshots in Photo Booth. It’s the most fun a face can have.
You’ll see two cameras on iPad — one on the front and one on the back. They may be tiny, but they’re a big deal. They’re designed for FaceTime video calling, and they work together so you can talk to your favorite people and see them smile and laugh back at you.3 The front camera puts you and your friend face-to-face. Switch to the back camera during your video call to share where you are, who you’re with, or what’s going on around you. When you’re not using FaceTime, let the back camera roll if you see something movie-worthy. It’s HD, so whatever you shoot is a mini-masterpiece. And you can take wacky snapshots in Photo Booth. It’s the most fun a face can have.
iPad Smart Cover. Designed for iPad.
iPad 2 and the iPad Smart Cover are made for each other. Literally.4 We designed the iPad Smart Cover to work side-by-side with iPad — and on top and underneath it, too. Smart magnetic technology built into each really pulls them together. The iPad Smart Cover falls perfectly into place and stays put to protect your iPad screen, yet doesn’t add bulk to its thin, light design. Open the Smart Cover and your iPad wakes up instantly. Close it and your iPad goes to sleep automatically. And here’s another smart part: It transforms into the perfect movie-watching, game-playing, web-surfing stand. It comes in 10 bright colors — including five in rich, aniline-dyed Italian leather. Choose your favorite, and your iPad will be smart all around.
iPad 2 and the iPad Smart Cover are made for each other. Literally.4 We designed the iPad Smart Cover to work side-by-side with iPad — and on top and underneath it, too. Smart magnetic technology built into each really pulls them together. The iPad Smart Cover falls perfectly into place and stays put to protect your iPad screen, yet doesn’t add bulk to its thin, light design. Open the Smart Cover and your iPad wakes up instantly. Close it and your iPad goes to sleep automatically. And here’s another smart part: It transforms into the perfect movie-watching, game-playing, web-surfing stand. It comes in 10 bright colors — including five in rich, aniline-dyed Italian leather. Choose your favorite, and your iPad will be smart all around.
LED-backlit display. The view is amazing.
iPad is one big, beautiful display — 9.7 inches of high-resolution photos, movies, web pages, books, and more. LED backlighting makes everything you see remarkably crisp, vivid, and bright. Even in places with low light, like an airplane. And there’s no wrong way to hold iPad. It’s designed to show off everything in portrait and landscape, so with every turn (even upside down), the display adjusts to fit. Because it uses a display technology called IPS (in-plane switching), it has a wide, 178° viewing angle. Hold it up to someone across the room, or share it with someone sitting next to you, and everyone gets a brilliant view.
iPad is one big, beautiful display — 9.7 inches of high-resolution photos, movies, web pages, books, and more. LED backlighting makes everything you see remarkably crisp, vivid, and bright. Even in places with low light, like an airplane. And there’s no wrong way to hold iPad. It’s designed to show off everything in portrait and landscape, so with every turn (even upside down), the display adjusts to fit. Because it uses a display technology called IPS (in-plane switching), it has a wide, 178° viewing angle. Hold it up to someone across the room, or share it with someone sitting next to you, and everyone gets a brilliant view.
Multi-Touch. Everything’s at your fingertips
Technology is at its best when it feels completely natural, almost like there’s no technology at all. That’s Multi-Touch on iPad. You use your fingers to do everything, so everything you do — surfing the web, typing email, reading books, and swiping through photos — is easier and a lot more fun. How does it work? When your fingers touch the display, it senses them using electrical fields. Then it instantly transforms your taps, swipes, pinches, and flicks into lifelike actions. Just like that.
iOS 4. The world’s most advanced mobile operating system.
iOS 4 is the operating system for iPad (along with iPhone and iPod touch). It lets you browse, read, and see everything just by touching the screen. It includes all the powerful, innovative, and fun built-in apps you use every day, many times a day. And it’s the platform on which more than 65,000 other amazing apps have been created for iPad. It’s highly secure, stable, and responsive, and it’s made to work seamlessly with the iPad hardware. iOS 4 is the reason no other device has yet come close to iPad.
iOS 4 is the operating system for iPad (along with iPhone and iPod touch). It lets you browse, read, and see everything just by touching the screen. It includes all the powerful, innovative, and fun built-in apps you use every day, many times a day. And it’s the platform on which more than 65,000 other amazing apps have been created for iPad. It’s highly secure, stable, and responsive, and it’s made to work seamlessly with the iPad hardware. iOS 4 is the reason no other device has yet come close to iPad.
Gyro, accelerometer, and compass.iPad knows your every move.
With the built-in accelerometer, you can rotate iPad to portrait or landscape, or even upside down, and whatever you’re watching, reading, or seeing adjusts to fit the display. And now the accelerometer, three-axis gyroscope, and compass all work together. They sense which direction iPad is heading and how it’s moving. So games, maps, and other apps know your every twist, turn, tilt, and 360. It’s an epic win for gaming. And it’s just the beginning of better-than-ever iPad apps.
With the built-in accelerometer, you can rotate iPad to portrait or landscape, or even upside down, and whatever you’re watching, reading, or seeing adjusts to fit the display. And now the accelerometer, three-axis gyroscope, and compass all work together. They sense which direction iPad is heading and how it’s moving. So games, maps, and other apps know your every twist, turn, tilt, and 360. It’s an epic win for gaming. And it’s just the beginning of better-than-ever iPad apps.
0
comments
Posted by
Power Lab
Labels:
Apple
Phone 5 Announced Today by Apple
Phone 5 Announced Today by Apple
Today Apple has announced IPhone 5 features and design at CES 2011 and said that it will be released in September 2011. IPhone 5 is the better and most stylish IPhone of its series. its slim design and curve edges make it more sexy and beautiful. Home button is gone and it comes with 8MP camera. The biggest changes of IPhone 5 is that its screen is 4 inch diagonally which makes it biggest touch screen and smart phone in the world. The new camera is full HD so you can capture stunning photos in HD.
IPhone 5 will have built in storage of 64GB which makes it portable hard-drive. Another col feature is that it will be 3D so you can enjoy both 2D and 3D worlds. Battery seems to be better and better and talk time goes to 20 hours. At-last Apple has decided to go Dual SIM which means that you can run two SIMs at a time. IPhone 5 also has A5 processor for faster speeds and software execution. With IOS 5 its the phone with almost everything you will ever need. So watch out for September 2011 for IPhone 5 and enjoy the beautiful world of features.
IPhone 5 will have built in storage of 64GB which makes it portable hard-drive. Another col feature is that it will be 3D so you can enjoy both 2D and 3D worlds. Battery seems to be better and better and talk time goes to 20 hours. At-last Apple has decided to go Dual SIM which means that you can run two SIMs at a time. IPhone 5 also has A5 processor for faster speeds and software execution. With IOS 5 its the phone with almost everything you will ever need. So watch out for September 2011 for IPhone 5 and enjoy the beautiful world of features.
0
comments
Posted by
Power Lab
Labels:
Apple
Apple IPhone secretly records its users Data
Apple IPhone secretly records its users Data
A team of technical group has said that Apple IPhone and Apple IPad secretly records its users Data which includes your voice conversations, your location(e.g city, country) , your language, your job info, Zip code, area time and even the data you save on these devices. Security people said that Apple save these information in the devices and then use them for unknown purposes. Security people said that with a proper software you can easily extract this data from Apple devices.
It is not sure that Apple upload these information or not. This leakage of information will be very painful to Apple because whether or not they are intentionally saving this information for which ever purpose this will damage company image. On the other hand Apple have not said any thing related to this information. So when ever you use any device its very essential that you read all the terms and conditions of that company.
It is not sure that Apple upload these information or not. This leakage of information will be very painful to Apple because whether or not they are intentionally saving this information for which ever purpose this will damage company image. On the other hand Apple have not said any thing related to this information. So when ever you use any device its very essential that you read all the terms and conditions of that company.
0
comments
Posted by
Power Lab
Labels:
Apple
Subscribe to:
Posts (Atom)