Open top menu
Showing posts with label Level 2. Show all posts
Showing posts with label Level 2. Show all posts
Tutorial # 47 - Free Blogger Backgrounds and Textures

Blogger is a place for everyone. Thanks to the overwhelming support of the Blogger and creative communities, there are plenty of free to use resources out there to make your site look great and keep you focused on what you love best. Here are some of the best sites for acquiring blogger backgrounds that won't cost you even a single penny and will look incredible.


Shabby Blogs
Shabby blogs offers some unique texture and graphic rendered Blogger backgrounds to choose from. All of the designs that they have are created to be standard width so you don't get a lot of flexibility to choose from; however, there are guides out there that can teach you how to extend the sidebars, header, and footer of your screen if you find one you love and this is something important to you. In addition to offering Blogger backgrounds Shabby blogs also has a section for cute little buttons that you can add to your site to give it an extra special touch.


Hot Bliggity Blog
Aside from having one of the coolest and creative names to say out loud, Hot Bliggity Blog has a wide selection of patterned-based blogs for your site. You can choose between different color schemes, and they also offer three different sizes to pick from, standard, widened, and full width. Best of all, they are really easy to install. All you have to do is click on the install link underneath the image. From there it will copy the code for you into your clipboard and give you instructions on where to paste it.


Dotty Dot Dot
Dotty Dot is the place to go if you like geometric type backgrounds that are heavy on squares, plaid, circles, and of course dots. The website is a little bit hard to navigate, but they have a sidebar with a bunch of tags to help you sort through all the available templates and find something you like. Just about every color you can imagine is available if you plan on matching your Blogger backgrounds to your favorite color or font style. The widths of the most of the templates vary so some have heavy padded sidebars, whereas some are very skinny.



LeeLou Blogs
Lee Lou Blogs offers Blogger backgrounds that look a lot like you would find in a scrapbook with a heavy dependency on small pictures and vector graphics. These free templates would go great with any home improvement blog or DIY arts and crafts writer. Most of the free backgrounds are standard size with the high padded sides, but like anything you can get access to more templates if you want to take advantage of any of his premium designs.


CgTextures
If you just want something basic real basic that won't distract customers from your content, you can head over to CgTextures. Their site is full of photos and textures that could be added as a background image with a reduced transparency. The blog would still look great and you wouldn't have to worry as much about trying to match your font style and color so that it fits in with the background. Instead you can draw more focus on what's important and less on the site's bells and whistles.



Every Stock Photo
Bloggers that want less of an 'artsy' look to their site and instead more of a serious appeal can get a picture from Every Stock Photo to use as the background image. You can also benefit by using some of the pictures offered through this site within your blog posts so that you aren't stuck buying things from premium image providers. There search bar and navigation panel makes it easy to find exactly what you are looking for to see a unique feel to every page.



Shizoo-Design
Shizoo-Design is a German based design firm with about 554 different patterns to choose from. You can find everything from conservative shapes to abstract rainbows and splashes of color. All of the textures are provided in a range of size, anywhere from 1000x700 pixels to 1300x600 pixels so that they will comfortably fit your entire site's background and work with most browsers and computer screen sizes. Brushes and custom icons are also available from the site, free of charge.


Patterns of Change
Patterns of Changes offers Blogger backgrounds that are cartoon oriented and that can best be tiled across the screen. The site is perhaps one of the easiest to use compared to all the others on the screen, providing a simple navigation bar where you can choose what color you'd like the pattern to be. When you select one of the colors provided, it will come up with a bunch of different patterns usually associated with that color. For instance, when the color brown is selected, one of the choices ia brown cake. Blogger backgrounds for this site might not be the best choice for business professionals, but they certainly are fun.


Add a Background Image using the Blogger Template Designer

Step 1: First you need to download a Background from either the above given links or some other source

Step 2: Go to Template, press the Customize button on the right side

Step 3: Once the Blogger template designer has opened, you'll see the "Background" option on the left - click on it. Now click on the box below the Background image title and it will open a window from where we can select a default background image. On the upper left side of this window, click Upload Image and select the image you would like to use from a location on your computer.
Note that you should use a JPG, GIF, or PNG image that is no more than 300k in size. If your image is too large, then you can use the Kraken.io image optimizer to make the file smaller.

Step 4
After you've uploaded your image, click 'Done' and you'll be taken back to the background menu. Here you will see additional options like: Alignment, Tile and Scroll with page:

- Alignment: change the position of the background image to start either horizontal (left, center, right) or vertical (top and bottom);
- Tile (Repeat): if you want a small background image to fill the page, choose to repeat (tile) horizontally and/or vertically;
- Scroll with page: the box is checked by default, this means that the background scroll along with the page contents. If you want the background picture to not move as the page is scrolled and stay exactly where it is, uncheck this box.

Step 5: For a background image with plain color in the middle for content, you might want to remove the main and header background. Navigate to Advanced > Backgrounds and type the word "transparent" inside the Main Background and Header Background box

If the background is smaller than the content area, we can fix this using CSS. Scroll down and click on the Add CSS option, then paste this CSS code inside the box:

body {
background-size: 200%;
}

.body-fauxcolumn-outer .cap-top {
background: none;
}

Note: To change the size of the background, modify the 200% value.

Step 6: Press the 'Apply to Blog' button!


How to Change Background in a Custom Blogger Template
Sometimes the above options might not appear in some custom Blogger templates if the body.background variable hasn't been defined. In this case, we will need to go to HTML of the template

Step 1: Go to Dashboard > Template, Click on "Edit HTML"


Click anywhere inside the code area and press CTRL + F to open the blogger' search box

Step 2: Type or paste ]]></b:skin> inside the search box and hit Enter to find it


Step 3: Just above the ]]></b:skin> tag, add one of the following codes:

For a large background image:

body {
background-image: url(IMAGE-URL.png) !important;
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
background-size: 100%;
}



If using a repeating pattern, add this CSS code instead:

body {
background-image: url(IMAGE-URL.png) !important;
background-repeat: repeat;
background-position: center top;
background-attachment: fixed;
}



Step 4: Replace the text "IMAGE-URL.png" from above with your image URL


Step 5: Finally, preview the template to ensure that the background image appears as you want, and press the "Save Template" button to save your changes. And you're done!
Read more
Tutorial # 24 - Introduction to Blogger Widgets/Gadgets

If you go to Layout > Add a Gadget, there are various gadgets available as shown in the image below. Almost all the gadgets/widgets are quite easy to understand, so we are not going to waste any time in such widgets. You may add a custom widget to Blogger you want to add a widget which is not available in the blogger list of gadgets/widgets. The HTML and JavaScript widget within Blogger is a blank widget that allows you to add or paste third-party functionality or other code to your blog.
We can also insert various plugins and widgets/gadgets using HTML mode in the blog posts and pages.
Read more
Tutorial # 23 - How to advertise your site/blog through facebook


Step 1: Log in your account in facebook, if you don't have your facebook page, create a one. Then click on "Promote" at the right top corner.


Step 2: You will get different options regarding advertisement as shown below.


Step 3: You may either give ads in facebook for either your website or facebook page. By clicking any of the above, you may get various options regarding your ad design and target audience.
Read more
Tutorial # 22 - How to apply for Google AdWords

Well it seems that using Google AdWords is very difficult to understand but it isn't so. Even a beginner can start promoting his blog with it, all you need is a way to pay and follow this tutorial. So lets begin, follow below steps to start promoting your blog through Google AdWords.


Step 1: Go to blogger dashboard and navigate to Campaigns. Then Click "Start Now"

Step 2: Type your Email, Select your country, Select your time zone and your currency(in which you will pay for advertising).
Step 3: Click on Create Your First Campaign.


Step 4: Give a title to your campaign, Select the type of ads either Standard or All features, Choose networks and devices(on which ads will show up e.g computer, tablets, mobile etc).


Step 5: 
Scroll down the page and move to Locations, here you have to choose the countries in which you would like to show your ads. Choose All the countries or your own country or if you want to target specific country then choose Let me select. If you choose Let me select then type the name of the country in the search box below and select it.


After location you have another option below "Languages" so check the languages in which you would like to show your ads. Be sure that the languages you select aren't only languages but these languages will decide that on which Google domain your ads will appear.

Say that you choose English, now your ads will be shown on the Google domains which have English language e.g. Google.co.uk, Google.com, Google.pk.

It doesn't mean that your ads will not be shown in the countries you choose.

Step 6: There are three things that you have to deal with, one is to choose a bid strategy, budget for your ads and other is to ad extension to your ads.

Choose Basic options in bid strategy because Advanced options are difficult to understand.

In bid strategy area you have two options:
1. Adwords will set my bids to help maximize clicks within my target budget.
2. I'll manually set my bids for clicks.
Choose I'll manually set my bids for clicks because if you let Google to choose bids for you then you will get more and more traffic but have to pay high rates.



After choosing I'll manually set my bids for clicks you will have two options:-
1. Default bid.
2. Budget.
In the default bid type the rate which you will pay for each click(PPC).

Tip: For a quick boost in traffic while spending lowest amount set $0.02 as default bid.

In budget area type $1 or $2 no matter what you type but it is just a limit in which you will pay Google Adwords. For example if you set a budget of $1 and default bid $0.02 then you will get 20 clicks for 1 dollar and after that your ad will stop running because your daily budget is consumed. If you don't get 20 clicks in a day then your remaining budget will be used next.


Ad extension is an optional feature to include relevant business info with your ads e.g location, sitelinks, call info. So if you want to use this feature just check any of the given option and follow instructions to proceed away.


 Step 7: Click on Save and continue and you have successfully created your first campaign now its time to create an ad group which will include you ads so follow next step.

Step 8: Give a name to your ad group and below it design your ad look. You can see a preview of your ad on the page.

Step 9: Scroll down and write your keywords in the given text area as shown in below photo. Write 10-20 keywords on after other.


Step 10: After writing keywords click on Save and continue to billing as shown in below image


Step 11: After selecting your country, click on Continue. Then you'll get to Billing Settings.


Step 12: Select account type as individual and fill up your info. E.g your name, address, phone number etc and scroll down the page.


Step 13: Select Automatic payments in How you pay option


Step 14: Check the Yes, I agree the above terms and conditions and click on complete sign up.
Congratulations! you are done successfully. You can read more about Google adwords below e.g how to create more campaigns or edit the existing one, how to change billing info and account info and also how to cancel your account any time.

How To Make Changes In Settings?
Although payment settings and other settings are configured and saved at the time of setting up account but later you can change your payment as well as account settings. To change your account settings just click on the settings button on the top-right-corner of the page.


To create more ads and ad-groups just navigate to campaigns and click on  +CAMPAIGN 
Read more
Tutorial # 20 - Appropriate Use of Permalinks

Permalink is a URL that links to a blog post.

Step 1:
When you write a post, Blogger automatically generates a permalink for your post from its title. If you prefer to use a custom permalink, you can do so via the “Permalink” option in the Post Settings box. See figure below:

Custom URLs are usually used in order to make it SEO-friendly.
Read more
Tutorial # 18 - Meta Description and Search Engine Optimization (SEO)

Step 1: Make your blog searchable and 'listed'


Step 2: Go to Setting > Search preferences for further SEO settings. Click on the all the Edits

Step 3: The setting of blogger's search preferences are described  below

If the feature is turned on (e.g., you’ve selected Yes for "Enable search description?"), then you will see "Search Description" option in the "Post/Page Settings" section of the Post/Page Editor as shown in the image below:


You must specify a search description for your blog including each post and page, otherwise search engines will establish one for you based on your blog’s content. This also helps in Search Engine Optimization (SEO). For further guide on SEO, click here

For Crawlers, Indexing and Robots see Tutorial # 19 - Appropriate Use of Custom Robots
Read more
Tutorial # 17 - How to make the content of your Blog useful

How to Make Boring Content Interesting!
1.       Publish regular updates: The more you blog, the more traffic you'll get.
2.      Think of your audience: A good way to build an audience is to speak to one in particular. When you keep your audience in mind, your writing gains focus. Focus goes a long way toward repeat visitors.
Read more
Tutorial # 16 - How to Connect your Google+ Profile or Page


Step 1: Go to the gearing icon at the right top corner, and click on "Connect to Google+"

Step 2:

Step 3

Step 4: Now the blog is connected to your Google+ profile. There are various options regarding posting the blog's content to your profile. You can also connect your blog to a Google+ page.

Step 5: If you want to link your blog to a Google+ page, first you have to create a page unless you already have one.

Step 6

Step 7

Step 8

Step 9

Step 10

Step 11

Read more