Open top menu
Showing posts with label Tutorial. Show all posts
Showing posts with label Tutorial. Show all posts
06 March 2012
Blogger Tutorial - Add an Image to Sidebar Titles

Over on my other blog All These Pretty Things I have added a cute little feather to the start of my sidebar titles. this is a great design fluorish and makes the items in my sidebar stand out. so today I'm going to show you how to achieve the same thing on your own blogs. Of course you can use any images you like.




To start with you'll need to create your image in your photo editing software of choice. I made mine 40px high and 80px wide. Upload your image to photobucket and grab the direct link. Make a note of this url.

Log into blogger and navigate to the template designer. Click on advanced and select add CSS. Paste the following code into the CSS box.

.sidebar h2 {
background:url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhk68sWw-lHd0RlT_h-dNtuXUeiO1-stg5MRN1sSymi4JYLV2vgWZUYM0qrcgdz8iUMBJM_95kkhQj4hUSulDGkCCCcTmAlAGd0c8GCVy1nxYjZNJ-obHcOfTGhFbg6HED_fKEppEK8Uxo/s1600/feather.png);
background-repeat: no-repeat;
background-position:left;
height:40px;
margin:0;
padding:10px 3px 0 80px;
line-height:1.5em;
text-transform:uppercase;
letter-spacing:.2em;
}

Replace the bolded url with the direct link you made a note of earlier.

Change the height to the height of your image and replace the '80px' on the line padding: 10px 3px 0 80px with the width of your image.

Press apply to blog.

You should now have an image next to your sidebar titles. easy peasy!

Read more
23 February 2012
no image



 

I recently wrote a post on Google PageRank, what it is and why it is important. If you haven't already read it click here. I've had many questions regarding it and many of you asked how you can improve your PageRank. So today I'm going to give you some easy to implement tips on improving your ranking.

1. Post in Forums

Forums are a great source of backlinks (links to your website). Most forums allow you to add a signature to all your posts. In this signature just add a link to your website. But a word of caution - don't post in any old forum make it relevant to the content of your blog. Each of these posts is a backlink. Don't just post any old thing though make it a quality post.

 

2. Produce Quality Content

This may be obvious but I will say it anyway. High quality content is your best friend when obtaining links to your site. The better your content the more people will link to you. This kind of goes without saying.

 

3. Comment

Comments are backlinks. No spamming though or commenting just for a link. Make your comments valuable and related to the content. if you use Blogger DO NOT comment using your google login details, instead use the name/url option. Otherwise it will be a link to your Blogger profile and not to your site.

 

4. Submit Your Blog to Search Directories

These are a great way to get free links to your blog. They also help with improving your ranking on search engines and thus help you secure more traffic. Find a list of search engine directories here.

 

5. Submit Your Blog to Blog Directories

Add your blog to blog directories like Wikio and Blog Catalog. These are all quality backlinks to your blog.

 

6. Exchange Links with Other Blogs

Place another blogger's link on your blog and ask them to do the same for you. Make sure they blog about a similar topic though. Don't overdo it though as Google can penalize this type of link exchange.

 

7. Guest Posts

When you guest post for other bloggers, they usually add your blog's link to the end of the post. This provides you with a backlink to your blog. it is a double win situation as it also introduces your blog to people who maybe wouldn't find your blog otherwise.

 

So there you have it, those are my 7 tips for boosting your Google PageRank which in turn will provide you with a greater share of search engine traffic.

 

 
Read more
no image

You may have noticed that when you hover on photos on my blog they lighten. It is a nifty little effect that can really make your photos stand out. knew of course about hover effect on photos but never implemented it until I saw it on Miss Drifted Snow White's fab, well designed blog. Go check it out, I love her blog and she is an utter blog design geek like moi.

So now let us get on how to do it.

Navigate to Dashboard>Template>Customise>Advanced>Add CSS.

Copy the following code and paste it into the 'add css' box.

.post-body img:hover {
opacity: 0.5;
filter: alpha(opacity=50);
border: none;
}.post table.tr-caption-container img:hover {
opacity: 0.5;
filter: alpha(opacity=50);
border: none;
}
 
Click on 'apply to blog'.

That is all there is to it. But be aware that this hover effect won't work in IE because IE is an antiquated and rather rubbish browser. If your still using IE I advise you to switch to firefox or chrome.
Read more
no image

Yet another post inspired by a conversation on Twitter. It seems some themes stretch the dimensions of an image making it look out of proportion. So I've devised a solution. This fix will make sure all your post images are the same width so it can also improve the look of your blog. It automatically works out the height so don't worry, you won't end up with images that look distorted. It retains the original images proportions.

To apply this fix. Navigate to Dashboard>Template>Customise>Advanced>Add CSS.

Copy the following code and place it in the box.
 
 
.post-body img {
width: 400px;
height: auto;
}
 
.post table.tr-caption-container img {
width: 400px;
height: auto;
}

Replace 400 with the desired default width you'd like for your photos. Then press the 'apply to blog' button and all your images will change to the desired size. Easy peasy! If you have any problems just comment, tweet me or drop me an email!
Read more
21 February 2012
no image

I've got a great little tutorial for you today. This one will show you how to add a popup email subscription button to your blog. It will place a follow button on the bottom right hand corner of your blog. When a user clicks on the follow button an email subscription box will appear. The beauty of the button is that it is fixed. So whenever a user scrolls down the page the follow button moves with them. The button is unobtrusive so it won't clutter your sidebar but it as it is always on the screen wherever you are on the page subscriptions should increase. it is based on the newly introduced follow by email widget.





So let's look at how to add it.

First things first. You'll need to add the follow by email widget. To do this - Dashboard>Layout>add a Gadget>Follow by Email .

Delete Title and add feedburner URL.

Save.

 

Then navigate to Dashboard>Template>Edit HTML>Proceed.

Look for </head>.

Add the code below above </head>

<style type="text/css">
/*<![CDATA[*/
.FollowByEmail {background-color: #c0c0c0;width: 200px;color: #fff;position: fixed;z-index: 999999;right: 10px;bottom: 0;}
.followOpened {-webkit-border-radius: 1px 0 0;-moz-border-radius: 1px 0 0;border-radius: 1px 0 0;-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);}
.w2bfollowButton {background: #c0c0c0;color: #CCC;font-size: 12px;line-height: 28px;padding: 0 10px;text-decoration: none;position: absolute;top: -28px;right: 0;display: block;-webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);-moz-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2);-webkit-border-radius: 2px 2px 0 0;-moz-border-radius: 2px 2px 0 0;border-radius: 2px 2px 0 0;height: 28px;}
.w2bfollowButton span {background: url("http://girldoesgeek.com/wp-content/uploads/2012/02/follow.png") no-repeat scroll 0 3px transparent;padding-left: 15px;}
.w2bfollowButton:hover,.followActive {color: #fff !important;}
.w2bfollowButton:hover span,.followActive span {background-position: 0 -37px !important;}
.followactive {background-color: #333;}
.follow-by-email-inner {padding: 15px;}
.FollowByEmail h2 {padding: 15px 15px 0;font-size: 18px;margin: 0 0 10px;font-weight: normal;}
.follow-by-email-inner p {margin: 0 0 10px;}
.follow-by-email-inner .follow-by-email-address {width: 95%;padding: 2px 4px;margin: 0 auto;-webkit-border-radius: 3px;-moz-border-radius: 3px;border-radius: 3px;font-size: 15px;border: 1px solid #444;color: #888;display: block;clear: both;}
.follow-by-email-inner form {text-align: center;}
.follow-by-email-inner td{display: inline-block;width:100%;text-align:center;}
.follow-by-email-inner .follow-by-email-address:focus {color: #000;border-color: #000;}
.follow-by-email-inner .follow-by-email-submit {cursor: pointer;padding: 2px 20px;background: #333;background: -webkit-linear-gradient(top, #333 0%, #111 100%);background: -moz-linear-gradient(top, #333 0%, #111 100%);background: -o-linear-gradient(top, #333 0%, #111 100%);background: -ms-linear-gradient(top, #333 0%, #111 100%);background: linear-gradient(top, #333 0%, #111 100%);color: #ccc;text-shadow: 0 1px 0 #000;border: 1px solid #282828;-webkit-border-radius: 11px;-moz-border-radius: 11px;border-radius: 11px;-webkit-box-shadow: inset 0 1px 0 #444;-moz-box-shadow: inset 0 1px 0 #444;box-shadow: inset 0 1px 0 #444;text-decoration: none;-webkit-transition: all 0.25s ease-in-out;-moz-transition: all 0.25s ease-in-out;-o-transition: all 0.25s ease-in-out;-ms-transition: all 0.25s ease-in-out;transition: all 0.25s ease-in-out;margin: 1em 0 1em 0;}
.follow-by-email-submit:hover {background: #222;background: -webkit-linear-gradient(top, #333 0%, #222 100%);background: -moz-linear-gradient(top, #333 0%, #222 100%);background: -o-linear-gradient(top, #333 0%, #222 100%);background: -ms-linear-gradient(top, #333 0%, #222 100%);background: linear-gradient(top, #333 0%, #222 100%);color: #fff;-webkit-box-shadow: inset 0 1px 0 #4f4f4f;-moz-box-shadow: inset 0 1px 0 #4f4f4f;box-shadow: inset 0 1px 0 #4f4f4f;text-decoration: none;}
.follow-by-email-submit:active {background: #111;background: -webkit-linear-gradient(top, #111 0%, #222 100%);background: -moz-linear-gradient(top, #111 0%, #222 100%);background: -o-linear-gradient(top, #111 0%, #222 100%);background: -ms-linear-gradient(top, #111 0%, #222 100%);background: linear-gradient(top, #111 0%, #222 100%);color: #aaa;-webkit-box-shadow: inset 0 -1px 0 #333;-moz-box-shadow: inset 0 -1px 0 #333;box-shadow: inset 0 -1px 0 #333;text-decoration: none;}
.w2bFollowFooter {text-align: center;font: normal 11px "Helvetica Neue", sans-serif;padding: 7px 0;margin: 0 0 -15px !important;border-top: 1px solid #3c3c3c;}
.w2bFollowFooter a {color: #aaa;text-shadow: 0 1px 0 #262626;background: none;text-decoration: none;}
.w2bFollowFooter a:hover {color: #fff;background: none;}
/*]]>*/
</style>
<script type="text/javascript">
/*<![CDATA[*/
;(function(w2b){w2b(document).ready(function(){w2b.extend(w2b.easing,{easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b}});var followBox=w2b(".FollowByEmail");followBox.prepend("<a class="w2bfollowButton" href="#"><span>Follow</span></a>");w2b("<p></p>",{class:"w2bFollowFooter",html:"<a href="http://feedburner.google.com" target="_blank">Delivered by FeedBurner</a>"}).appendTo(followBox.find(".follow-by-email-inner"));followBox.find("td:last").removeAttr("width");var followHeight="-"+followBox.outerHeight()+"px";followBox.hide().css({bottom:"-500px"});setTimeout(function(){followBox.show().animate({bottom:followHeight})},500);w2b(".w2bfollowButton").click(function(e){if(followBox.hasClass("followOpened")){w2b(this).removeClass("followActive");followBox.removeClass("followOpened").animate({bottom:followHeight},{duration:200,easing:"easeOutCubic"})}else{w2b(this).addClass("followActive");followBox.addClass("followOpened").animate({bottom:"0"},{duration:400,easing:"easeOutCubic"})}e.preventDefault()})})})(jQuery);
/*]]>*/
</script>

 

That is all there is to it! Any problems? Leave a comment.

 
Read more
20 February 2012
no image

You may have noticed that in my sidebar I have recent posts & recent comments widgets. In Wordpress there are many plugins available to achieve this but in Blogger there is no such built in widget. These widgets are useful fir improving clicks and allowing people to easily see your recent content. This is especially useful when people land on your blog via a specific post. So I am going to show you how to add these widgets in blogger. The finished product will look like this:

How to Add Recent Posts Widget

Navigate to your blogger dashboard and select the 'layout' page. Click on add widget and select 'feed'. in the url field enter http://yoururl/feeds/posts/default.

Hit save.

Drag the widget to its desired location and click on save new arrangement.

 

How to Add Recent Comments Widget

Navigate to your blogger dashboard and select the 'layout' page. Click on add widget and select 'feed'. in the url field enter http://yoururl/feeds/comments/default.

Hit save.

Drag the widget to its desired location and click on save new arrangement.

Make sure to change the title for both widgets otherwise your blog's name will default as the widget title.

 

If you have any questions or tutorial requests just leave a comment!

 
Read more
17 February 2012
no image

So many blogs have Facebook pages these days as many bloggers have realised the effect such a page can have on your traffic. Now I am not the biggest fan of Facebook as I much prefer the functionality and feel of Google+. But as of yet Google+ doesn't offer the same access to traffic as Facebook does as it is such a new network. One of the easiest ways for people to like your page is to have a like button on your blog. Having a link to your page is all good and well but it requires your readers to visit your Facebook page and like it. A button is a much better idea because as long as they are logged into Facebook they can like your page with just one click while on your blog. I recently added a button for a client and her likes more than doubled in less than a week. So today I'm going to show you how to easily add the button and this method works for Blogger AND Wordpress.

First of all visit http://developers.facebook.com/docs/reference/plugins/like/

You'll be presented with a page that looks like this.



In the top field enter your blog's Facebook page url.

Untick the send button box as a send button is completely unnecessary.

You can choose whether to show the faces of people who liked your page.

Layout style will let you choose the design of the button. As you choose options the button design on the right hand side of the screen will change so you can preview the button before adding it.

all the other options are fairly self-explanatory.

When your happy with the design click on 'get the code'.

In the box that pops up select 'iframe'.

Select all the code and copy it (ctrl+a then ctrl+c).

Paste the code into a widget in Blogger - Dashboard>Layout>Add Gadget>HTML/Javascript. In Wordpress - Dashboard>Appearance>Widgets>Text

That is all there is to it!
Read more