Showing posts with label images. Show all posts
Showing posts with label images. Show all posts

Saturday, September 24, 2016

How to Optimize Images for Better Search Engines Ranking

How to Optimize Images for Better Search Engines Ranking



Optimize Images for Better Search Engines Ranking
Images creates a big role of site RATING and SEO Ranking in Search Engines.Whenever Search Engines Spiders and Crawlers come to your blog for Indexing your Pages into Search Engines ,They not Just give importance to your Content that you have posted .It also depends on your Post Images and customizing them in a way that they can easily get Huge traffic from Search Engines.


Blog Images make a very important part of a Website.Adding Images into Blog Posts is a way to exciting your blog readers with visual look of your blog and moreover this is also a cause of extra entertainment.

Images searches on search engines is a way to drawing Huge new Readers to your blog through optimizing your images for better performance in the Search engines.But most of blog owners are unaware of it and in its results is lost of that unique Traffic that they will get through Google images Searches.Most of people just go to Google images and type any keyword that is related to your image topic will be visible to him, In this way you can daily get a Huge Natural traffic for your blog by Images optimization Practice.

Tips for Optimizing Images for Boost Traffic from Search Engines

Tip #1:Adding Title Text and ALT Tags

Those people who love images are a good way to getting traffic from them.But if you have some general knowledge that Visitors have ability to see and understand the What the Images is about what for , but computers have not.Whenever a Visitor writes and search for specific Text on Google Images ,there you will see those images that were fully optimized with Adding Title Text and ALT Tags.

Google Web Crawlers  Cant Read that text which is written on the Image ,but they can easily crawls that text that you have inserted into an Image Title and in ALT Tag.So thats why Search Engines Crawlers and Spiders just show the Results of that images that have unique  Title Text and ALT Tag.

For Example, you have uploaded a Picture of  "Horse" into your Blogger and in the "ALT TAG" field you inserted "Elephant" , so Google simply crawls your Image in the Results of "Elephant" but in reality it is a "Horse" image .This why because Google Search engine Crawlers and Spiders doesnt Read and understand images that you use on Blog , They simply identify and Crawls them into Search Engines according to the "Title" and the "ALT Tag" that you have added in the Image.

Images name are also another fact of Search Engine Results.Whenever you are going to Upload a image on blog first give him a unique name in order to getting indexed it into search engines as Getting Huge Traffiv Term through Search Engines images.

Tip #2:Add A Caption

After Adding a unique Title and ALT Tag into your Blog image , then next is to add a "Unique Caption" into your blog image.By adding Caption into your images will help Browsers to easily understand that what they are looking in the image.This will gives a Better appearance and more people get to go your blog.

Mostly People go to your Blog by using Google images but most of people are come for just Downloading the Image from your blog for their Own use.In order to get attention of visitors to your blog is to add a Unique caption in the image ,so that they will comes to the conclusion to take a look at your blog.

Tips #3:Image Size

The Size of the Image is very important Fact as in SEO matter as well as in Loading of the Blog .Loading of the Blog Page is plays a very critical role in SEO and also had a deep impact on Visitors .In these Modern Days no one wants to wait for 10 seconds , but in some website due to a lot of High Quality images and High Images Size it take a lot of Loading Page full .but as a visitor Dont like to wait so he decides to go to other site rather then stops at your site and wait for compilation of the Loading of page.

As Traffic Matter ,always take great care of your blog loading because visitors pay attention to those websites which were easily opened and loaded in no time.
Always use Adjustable Image Size for your blog and try to optimize image to keep the small size as much better quality result in the Blog Page.

If you have a Camera that you use for Taking Images , but images taken from a camera are usually more then 1MB in size and that is not comfortable for Website loading purpose and also it effects the SEO of that website.
You may use some Photoshops and try to reduce the Size of the image and then post it into your Website/Blog.

After Applying these Tips for Optimizing Images for better Search Engines Ranking ,your site then will Loaded perfectly according to the visitor needs and also will help your blog in Increasing its SEO ranking on the Search Engines.

download now

Friday, September 2, 2016

Make Blog Images and Post Thumbnails Responsive

Make Blog Images and Post Thumbnails Responsive


mobile friendly responsive images

While we are working on a Blogger it is very important to Create our Blog Images and Post Thumbnails friendly to the Mobiles version. In Web Version those pictures we Upload/Use on our Blog Posts for Clarification about the Concept of our Lecture are Friendly and Easy to See from our PC/Laptop and we can get good results of images but Those users who came through mobile phones and Tablets in our Blog they have to Face Some Problems about the Images and Thumbnails resolution.


So in this Tutorial you will learn How to Make Blog images and Thumbnails Responsive to adjusting their Sizes and dimensions without effecting their Resolutions in Mobiles phones and Tablets.Images that we upload in large Sizes doesnt take fit in mobiles version devices and this thing affects a bad impression for our Blog Users and creates a negative effect.

Today i will tell you how can you make your Images and Thumbnails adjustable that their width and height changes as they were open from small or big screens like If your image is For The Web Version and in Big Size and High Resolution , So when you open it through small screens like Mobiles phones and Tablets , it will automatically adjust its width and height with respects to Small Screens and displays as their quality and looks suitable.

Why should we need Mobile Friendly Images?

The most amount of traffic that your blog get from such devices which are smaller , more slower and low bandwidth devices.On these such type of small screen devices your desktop images take more time for loading and this thing creates a bad effect on users.
So by making your Blogger images Responsive your High resolution images will Load Fast and also SEO ranking Will increase of your blog.

Different Image Size For Different Pages:

We use Images in different Places and for different Pages.For Example we use images in header, footer, sidebar. The Most number of images that we use are in Post Content.All the Time a blogger wish to display his Thumbnails Images in Small size on homepage posts and would like to display those images in Larger Size in Post Content whenever his post page is viewed by someone.Therefore Different Images size for Different Pages.

As the Images that were in Header and in Post Content are more wider than those images that were used in Blog Footer and in Sidebar . So we have to Style Each image type Accordingly .

Find Parent IDs or Classes:

So we need to find what is The Parent ID or Parent Class of any HTML Elements in our Blogger.
Here are the Parent IDs or Parent Classes in our case:

1:The Parent Class or Parent ID for Header widgets is .headerright  and .headerleft
2:The Parent Class or Parent ID for Sidebar column is .#sidebar .widget-content
3:The Parent Class or Parent ID for Footer ID is #lowerbar-wrapper.
4:The Parent Class or Parent ID for Post is .post

As we are going to customize the images in our Blogger , therefore as we know that for every image in blogger we have <img> HTML TAG ,so we will use img class for all the Above Parent Classes and Parent IDs .

Select Device Breakpoints

Now Here In this part We have to Add this CSS Codes in our Blogger Template HTML  for the device Breakpoints With Adding this CSS Responsive Cheat Sheet.We will Choose a breakpoint of 786px which is MyZone.Here is our Following CSS code that we are going to add in our Blogger template.




/*-----Mobiles, Tablets MyZone ----------*/

@media only screen and (max-width:768px) {

.headerright a img,.headerleft a img{
max-width: 75%!important;
margin-left: 0;
position: absolute; height:auto;
left: 30px;}

.post a img, .post img{max-width:95%; height:auto;}

#sidebar .widget-content a img , #sidebar .widget-content img { max-width:98%; height:auto;}

#lowerbar-wrapper a img , #lowerbar-wrapper img { max-width:98%; height:auto;}

}

What is the Importance of max-width?

A mad-width Property which is set on 98% will proves that your Image is not exceeded 98% of the parent width container.If you will keep your mad-width property 100% than your images may overlap in parent container , so always keep 98%.

Display images on Homepage and Posts with different size:

In this part we will customize our blogger images on homepage and Posts.If you want to display thumbnails on the Homepage and the large images with High resolution in Posts pages or if you want to floating the images in the left side in Homepage but also want to show them in the Center of the Posts pages then for this purpose you have to use some conditional tags and enclose the media queries inside the TAGS as it is shown below.
You have to Add this code below of this HTML Tag in blogger template.
TAG:  ]]></b:skin>

HOMEPAGE IMAGES or Thumbnails Code:




<b:if cond=data:blog.pageType == "index">

<style>

/*-----iPhone 2G, 3G, 4, 4S Landscape View MyZone2 ----------*/ @media only screen and (max-width:480px) {
.post a img, .post img {width:95%; float:none; height:auto; clear:both; margin-bottom:10px;}
}

/*-----Mobiles, Tablets MyZone4 ----------*/

@media only screen and (max-width:786px) {
.post a img, .post img {max-width:50%; height:auto; float:left; margin: 0px 10px 10px 0px;}
}
</style>
</b:if>
This Will  Show images on the Homepage with the 95% width and Center with them small screen Phones which have less width than 480px.

POST IMAGES Code:
For the images which were used inside the blog posts pages use this following Breakpoint Code .



/*-----Mobiles, Tablets MyZone2 ----------*/

@media only screen and (max-width:768px) {

.post a img, .post img{max-width:95%; height:auto;}

}
 This Code will display images in the center of the Blog Posts pages with the width of 95%.
You can also use these conditional tags for customizing your blog for making friendly with the mobile Devices.

download now

Monday, August 15, 2016

Create Advanced Gif Moving Images in Windows

Create Advanced Gif Moving Images in Windows


Graphics Interchange Format betterly known as GIF image. Gif is moving image that means in one image there are many images and they change continously time by time. Now many Guyz in Facebook question me how they made perfect gif image without any website or Photoshop. In here I dont use any online Website for creating GIF Photos. We use Photoscape windows software for creating gif images in windows.
gif creater for windows


Add Own Image/Photo/Picture in Music Mp3 Files

Photoscape : Photo Editing and Making Software
Photoscape is very small in size. Photoscape size on disk is 20Mb only . With Photoscape you create awesome Gif .In Photoscape you find lots of settings for creating detailed and advanced GIF images. You can set timer and effects with your images. When you make a GIF image you can also preview your image before saving.
photoscape gif makerphotoscape gif maker
Downlaod Photoscape from his Official Website

download now

Monday, August 8, 2016

How to Remove Blogger Images Shadows and Borders

How to Remove Blogger Images Shadows and Borders



How to Remove Blogger Images Shadows and Borders
In your Daily Basic routine of blogging ,you have might a maximum number of images into your blogger.For example you have posted on a Celebrity and there you have uploaded a number of Images.So there you have also seen Shadow and Border around that images that you have uploaded.Sometimes you dont like this and wanted to remove those Shadows and Borders but you have failed every time because of No Knowledge and No Guide about removing them.


So in this tutorial You will Learn How you can Remove Shadows and Border from Blogger Images/Pictures.Follow these instruction and easily remove Shadows and Borders from Blogger images/Pictures.

How to Remove Blogger Images/Pictures Shadow and Border

Step 1:Go to your Blogger Dashboard ,then click on "Template" and Hit on "Customize" button.

Step 2:Once you will click on "Customize" , then a new window will open.From there Click on "Advanced" . then again click on "ADD CSS" . now there Copy and Paste this below code.
Code:
.post-body img, .post-body .tr-caption-container, .Profile img, .Image img,
.BlogList .item-thumbnail img {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  -moz-box-shadow: 0px 0px 0px transparent !important;
  -webkit-box-shadow: 0px 0px 0px transparent !important;
  box-shadow: 0px 0px 0px transparent !important;
}
As you can show in this Screenshot.
Remove Blogger Images Shadow and Border

After Adding the code into CSS input field, then Click on "Apply to Blog" for applying these codes.Now open your Blog and there you can see blogger images appeared without any shadow or any border.

NOTE:If This Method Doesnt work into your Blog Then Follow this new Method:
Step 1:Go to you Blogger , Then click on "Template" and Select "Edit HTML".

Step 2:Now Press (CTRL+F) from your keyboard for opening the Search Box. Then paste this Code and Find it in your Blogger template.
border: 1px solid $(image.border.color);

  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
Step 3:When you will find these code into your Blog , Now delete them from your Blogger Template.

If you cant find this code any where inside your Blogger template , then try to search for this Code in to your Blogger Template.
-moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
Once you will find this above code into your Blogger template  ,Simply delete it and Save the Template.After Saving the Template you will not Find any Shadow or Border around your Blogger images/pictures.


download now