Showing posts with label Tricks. Show all posts
Showing posts with label Tricks. Show all posts

12 April 2016

Driver Talent

Driver Talent
Driver Talent
Download, Update & Fix Your Windows Drivers

Top 1 Windows drivers update software, which offers driver solutions: find all driver
problems, download and install correct drivers, update to the latest drivers, download

drivers for another PC, backup & save drivers, restore drivers, uninstall drivers and do more. Keep your computer and devices in top condition.

Supported OS: Windows 10/8.1/8/7/XP/Vista, Windows Server

Supported language: English, German, French


Key Features of Driver Talent
Activate to the Pro version. See the Free version VS Pro version.
Scan to find all outdated, missing, corrupted, faulty & incompatible drivers.
Download and install best-matched drivers for computer hardware and all connected peripheral devices.
One-click repair & fix all driver problems.
Update to the latest drivers (several driver versions are available).
Pre-download and save drivers for your own PC, download and transfer drivers for another PC.
One-stop manage: backup, restore, uninstall, reinstall, and more.
Support driver downloads and updates for all hardware devices and manufacturers.
Keep your computer and devices in top condition.
100% compatible with Windows 10/8.1/8/7/XP/Vista, Windows Server.


Download Button


09 April 2016

Add Text Box & Textarea

Add Text Box and Textarea
There are times when you want to insert plain text into your Blog Post or template. This may be a piece of HTML code or JavaScript that you would like readers to copy, such as the “Link to Our Site” code in the sidebar. It could also be the Terms of a Legal Agreement that users can view. As we shall be discussing in our article on creating forms in Blogs, the text box can also be used in feedback forms for users to input feedback and comments.

The HTML code of the text box makes use of the <textarea> property. For the text box to be in a Blog Post, while drafting the Post, switch to “Edit HTML” mode to insert the following code. If it is to appear in the sidebar or other parts of the template, go to Template -> Page Elements -> Add a Page Element and select “HTML/JavaScript” to insert this code.

<textarea rows="2" cols="30" name="Famous Quotes" readonly="readonly">YOUR TEXT HERE</textarea>

The Free & Easy Way To Get Comments On Your Site Without Login

Comment Box Resources

In order to receive comments in our hosted platform, you first need to learn how to make a website. Here are some options for hosting:

For information on hosting your own website, considergreengeeks.com for wordpress hosting, reseller hostingand VPS Hosting. With these sites, you'll be hosting comments in no time!

Also Check out Web Hosting Review List. The best web hosting reviews are located at www.dailyhosting.net, which provides top notch true reviews.. Compare web hosting providers, pricing, read reviews and find hosting coupons at Host Legit.

Many of the best web hosting companies online use Server Sitters for outsourced hosting support and customer service.

Host your comments with Hostgator for 1 cent for the first month with these HostGator Coupons 2015.

We at HTML Comment box hope you find the best hosting company for your needs.

Learn where to install the comment box with iPage Review Box.

CloudAppsPortal.com has the widest choice of SharePoint hosting solutions, from SharePoint 2007 to 2016 versions. If you need end-user and migration support along withOffice 365 Cloud, then consider O365CloudExperts.com. Get a 30-day free trial for a Cloud Desktop with the option to add Office 365 at CloudDesktopOnline.com.

For our hosted comment users looking to buy youtube views visit Marketing Heaven for best social media packages. For cheap prices and excellent customer support, buy facebook likes from buycheapfollowersfast.Buy Instagram followers from Followersandlikes4u. Comment boxes can lead to more Facebook likes from the commenting users. If you still don't get enough likes, you can buy Facebook Likes here. But when you buy facebook likes cheap from buy-cheap-likes, you get liked by real humans.

Need a content writer so your visitors have something to comment on? Visit Collegelax.us; to get your paper commented or edited by an expert. Most colleges consultthis student association for comment on academic writing and editing.

Here's something worth commenting on! Dealspotr, the best website for technology deals online.

Need something to sit on while commenting? Buy woodenfurniture online at Urban Ladder, India's largest online furniture store.


Go to Blogger Dashboard > Layout > Click on Add a Gadget Button
Paste this Code on Html Box
Click Save Button & Drag the html widgets below Blog Posts


CSS3 Design for Bloggers Label

CSS3 Design for Bloggers LabelWhat is Labels and How to Label a Post in Blogger?

Labels in which you are categorized you blogger posts for your visitors to search every post by giving a simply Tag like if You have written a post for Blogger Traffic you have to give set it Label SEO. I have observed that most of the visitors after reading concerned post first of all they find categorize or tags of your blog and try to more explore your blog for that it necessary that your Labels must looking attractive to your visitors. So first of all here I will tell you how you can set a label in Blogger Post. Follow these step...


Step 1: Go to Blogger Dashboard > Layout > Click on Add a Gadget Button



Step 2: Go to Blogger Dashboard > Template EDIT HTML > Check on Expand Widget                       Templates Find ]]></b:skin> and paste above CSS code before ]]></b:skin> 
               Now save your template and refresh your blog. You find beautiful CSS Labels on                  Your blog.


.cloud-label-widget-content span a{margin:0 2px 6px 0;padding: 3px;text-transform: uppercase;border: solid 1px #6666FF;border-radius: 5px;float:left;text-decoration: none;font-size:10px;}.cloud-label-widget-content span a:hover {border:1px solid #FF0099;text-decoration: none;-moz-transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; -webkit-transition: all 0.5s ease-out; -ms-transition: all 0.5s ease-out; transition: all 0.5s ease-out;-moz-transform: rotate(7deg); -o-transform: rotate(7deg); -webkit-transform: rotate(7deg); -ms-transform: rotate(7deg); transform: rotate(7deg); }

06 April 2016

How to add CSS image hover effect in blogger

How to add CSS image hover effect in blogger

For the newbies who don't know how to add CSS image hover effect in blogge here is small guide for them so they can also become able to add css image hover effects to their blogger blogs. To add CSS image hover effect in blogger follow below steps:







Goto blogger dashboard

Goto Template >> edit html
Search for ]]></b:skin> tag ( quick tip: to search easily press ctrl+f )
Just above ]]></b:skin> paste one of the below CSS image hover effect code.
and you done!

Opacity

This is a pretty cool effect. Most bloggers likes to use this hover effect. It will change the opacity of the image on mouse hover. Below is the CSS for this effect. To know the adding instruction of this effect click on Installing Instruction below CSS code. At the mean time hover your mouse on image below to see how this hover effect will look.


.post img{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
opacity:0.7;
filter:alpha(opacity=50);
}

Zoom Out on Hover

By using this effect the image will be zoom out on hover. It will not effect your blog width. And I have slow down the zoom process to make it more beautiful. Here is the CSS.

.post img{
-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;
}
.post img:hover {
-o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    -moz-transform: scale(1.4);
    -o-transform: scale(1.4);
    -webkit-transform: scale(1.4);
}

Reflection on Image Hover

Whenever the mouse will be hovered on the image than this CSS code will produce a reflection of that image. Only webkit supported browser will be able to show this effect. Let's see the CSS code for this image hover effect for Blogger.

.post img{
-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease;
}
.post img:hover {
opacity: 1; /*Reflection*/ -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4))); /*Glow*/ -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); -moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8); box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}

Tilt Effect

This is really simple. We are going to rotate the image slightly when users will hover on this image. You will like this hover effect. Now the time to see the CSS code. Css code is for this is gven below image.

.post img{
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.post img:hover {
-webkit-transform: rotate(-10deg);
     -moz-transform: rotate(-10deg);
       -o-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
}

Blur Effect for Blogger

It is also quite simple. We will only need a few lines of codes to make this effect. Again this will work on Webkit browsers. Now see the CSS below demo image.

.post img{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
-webkit-filter: blur(5px);
}

Spin Effect

Whenever the user will hover on your blogger image than the image will start to spin. This is really crazy. The image will change from square to circle. See the demo below.

.post img{
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.post img:hover {
border-radius: 50%;
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

GreyScale

It will be like black & white image. When user will hover on the image of your blogger blog than it will turn black & white. The CSS code for this image hover effect for blogger is given below. Now see the demo and CSS.

.post img{
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
-webkit-filter: grayscale(100%);
}

Brightness

To make this effect I have changed the brightness of image. And when the user will hover on the image than the image will become more bright. See the CSS below. You know what you have to do.

.post img{
-webkit-filter: brightness(60%);
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
-webkit-filter: brightness(100%);
}

Rotate Image 360 deg. On Hover

This is really cool effect. It will make your image to rotate with little zoom effect. To make it more beautiful I have added little shadow on hover. It will completely change your image appearance on hover. Give it a try or see the demo of this image below. If you like it than copy the CSS code given below this image and click on installing instruction to know how to add this hover effect on blogger.



.post img {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
-ms-transition: all 1s ease;
transition: all 1s ease;
}
.post img:hover {
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
transition: all 0.5s ease;
padding: 4px;
background: #eee;
background: -webkit-gradient(linear, left top, left bottom, from(#eee), color-stop(0.5, #ddd), color-stop(0.5, #c0c0c0), to(#aaa));
background: -moz-linear-gradient(top, #eee, #ddd 50%, #c0c0c0 50%, #aaa);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 3px rgba(0,0,0,.7);
-moz-box-shadow: 0 0 3px rgba(0,0,0,.7);
box-shadow: 0 0 3px rgba(0,0,0,.7);
-moz-transform: scale(1.2) rotate(-350deg);
-webkit-transform: scale(1.2) rotate(-350deg);
-o-transform: scale(1.2) rotate(-350deg);
-ms-transform: scale(1.2) rotate(-350deg);
transform: scale(1.2) rotate(-350deg);
-webkit-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
-moz-box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
box-shadow: 0 0 20px rgba(255,0,0,.4), inset 0 0 20px rgba(255,255,255,1);
}

Rotate and Spin Effect

Here is another effect for images which is mixture of rotate and spin effect. To make it more beautiful I have added some background color when hovered on image. To see the demo of this effect just hover your mouse on the images of recent posts. Alternatively you can see the Demo of this image hover effect for Blogger in the image given below. And if you like this image hover effect than copy the CSS code below and add to your CSS area of your Template by following the steps given below the CSS.

.post img:hover {
opacity: 1;
-moz-transform: scale(1.2) rotate(-350deg);
-webkit-transform: scale(1.2) rotate(-350deg);
-o-transform: scale(1.2) rotate(-350deg);
-ms-transform: scale(1.2) rotate(-350deg);
transform: scale(1.2) rotate(-350deg);
-webkit-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
-moz-box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
box-shadow: 0 0 20px #292832, inset 0 0 20px #292832;
webkit-border-radius: 50%; -moz-border-radius: 50%; border-radius: 50%;  rgba(0, 0, 0, .4);
-o-transition: all 0.8s ease-out;
-webkit-transition: all 0.8s ease-out;
-ms-transition: all 0.8s ease-out;
transition: all 0.8s ease-out;
}

31 March 2016

Clothes Stained Spots (Kapron k Daagh)


Clothes Stained Spots


Stain spots on clothes fall protection and rescue of the spots tips. It is better to remove stains stain fabric dry cleaner to take the daily impact on clothing stains can be cleaned at home. With spots stains on clothing when it is best to immediately cleared. Some important things for her to keep her home.

These things, salt, white vinegar, mentholated spirits, ammonia, bleach, and dye borax solutions include killing. Gaming is something to absorb such growth, small brush and a soft sponge. Clean stains more deeply consider the following principles.

1 - Clean laundry stain before sending dress or maybe stains may become permanent.

2 - Notably avoiding stains do not wash with hot water.

3. Please use the easy synthesis. Sponge the stain with cold water on such extended benefit. If this is not successful, please use the chemical stuff. 

4. Chemical substances or not, part of the fabric felt a little Q and see its effects. Apply to stain after the overdose. 

5. Ammonia and bleach on colored clothes do not. Or spirits do not. Instead, wash with cold water, let it set borax.

6. Other chemicals such as ammonia be applied if it is fully absorbed in the sponge, wash cloth or cloth instead of water will be weakened. 

7 - Use a dry-killing solution, then make a circle around the stain and then covered by the scope of the cleaning. Thus the stain does not spread further. 

8 - If you are clean grease stains from clothing stains under Jah keep an absorbent pad. Then it will get wet during the cleaning pad change.


Clothes Stained Spots In Urdu
 ( Kapron Ke Dhaag)

( Daag dhabon say bachao or libas par parny waly dhabon say nijat ki mafaed batein) Behtar to yahi hai k daag dhaby saaf karny k liah kapry dry cleaner kay yahan lay jaen lakin rozana kapron par parny waly daag ghar per bhi saaf kiye ja skty hai.Kapron per daag dhaby parny kay sath hi foran saaf kar laina behtar hota hai. Is kay liah kch zaruri chezain apny ghar per hi rakhaen.

In chezon mein namak, safaed sirka, spirit, ammonia, bleach, borax or dry cleaning kay mahlool shamil hai. Kch or matafarqat bhi hain maslan jazb karny waly nashu isfunj or ak naram chota sa brush. Zada gehray daag saaf karty waqt mundarja zeal asulon ka khayal rkhaen. Landry mein kapry bhejnay say phly daag saaf kar laen warna ho skta hai daag mustakil ban jae. Grease kay daag ko khas tor say garam pani say na dhoaen.

Phly asan tarkeab istemal karaen. Maslan isfunj ko thandy pani mein dal kar pani say bhigo kar daag par maleyah. Agar is mein kamiyabi na ho tub kimiyae chezain istemal karaen.

Kimiyae chezon ko kapry kay ksi nazar na any waly hisay mein thora sa laga kar is asrat dkh laen. Is kay bad hi daag par zada miqdar mein lagaen.

Rungean kapron per ammonia bleach na lagaen. Yah spirit na lagaen is k bajae borax laga kar is ko thandy pani say dho laen.

Dusry kimiya maslan ammonia agar laga yah ho to issay isfunj mein pure trha juzb kar kay pani kapra dhoaen warna kapra is jaga say kamzor ho jae ga.

Agar dry cleaning ka mahlool istemal karaen to phly daag kay charon taraf ak daerah bana laen or phr daeray mein bahr ki taraf say daerah k darmeyan ki taraf say safae karaen. Is tarha say daag mazead phailta nhi hai.

Agar ap grease ka daag saaf kar rhy hon to daag ki jaga kapry kay nechay ak jazib pad rakh laen. Jub yah pad safae k doran bheag tub issay badal daen.

Contact Form

Name

Email *

Message *