How To Hidden Blogger Header and Replace Image Instead

1.Log in to your dashboard--> layout- -> Edit HTML

2.Scroll down to where you see this:


#header-wrapper {
width:800px;
margin:0 auto 10px;
border:1px solid $bordercolor;
}

Note :- width:660px can be different value.

3.Now Replace the above code with the below code.


#header-wrapper {
width:800px;
margin:0 auto 10px;
border:1px solid $bordercolor;
display:none;
}

Done. above code hides your blog header.

4.To use a image instead header,find the below code.


<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='your header title' type='Header'/>
</b:section>
</div>

5.Now paste the below code just after the above code.


<a href="URL_OF_YOUR_BLOG"><img src="URL_OF_THE_IMAGE" alt="Home" /></a>


6Click on "Save Templates" and you are done.

Bookmark and Share
Subscribe



Continue Reading...

How To Add New Layout below Header in Blogger

1.Log in to your dashboard--> layout- -> Edit HTML

2.Scroll down to where you see this:

  </head>

3.Add below code into your template just above the </head> tag.




#belowheader-wrapper {
width:890px;
margin:0 auto 10px;
overflow: hidden;
}

Note : You can change width:890px to equal the width  to your Header wrapper.

4.Now Scroll down to where you see this:


<div id='header-wrapper'>
<b:section class='header' id='header' maxwidgets='1' showaddelement='no'>
<b:widget id='Header1' locked='true' title='Your header title' type='Header'/>
</b:section>
</div>

5.Now paste the below code just after the above code.


<div id='belowheader-wrapper'>
<b:section class='belowheader' id='belowheader' preferred='yes'/>
</div>

6.Click on "Save Templates" and you are done.


Bookmark and Share
Subscribe



Continue Reading...

How to Add “Save Page as PDF” button to Blogger blog

1.First Sign up with Web2PDF.

2.Now Configure your "Save Page as PDF" button and click ‘Generate the JavaScript’ button.

3.Then a Javascript code will be generated. Copy This code.

Now follow these simple steps :

(a)Log in to your dashboard--> layout- -> Edit HTML

(b)Click on "Expand Widget Templates"

(c)Scroll down to where you see this:



<p><data:post.body/></p>
(d)Immediately after above line, paste the code which you have generated at the Web2Pdf Online website. It's look like below code.



<!-- START: PDF Online Script --> 
<script type="text/javascript"> 
 var authorId = "XXXXXXXX-XXXX-XXXX-XXX-XXXXXXX"; 
 var pageOrientation = "0"; 
 var topMargin = "0.5"; 
 var bottomMargin = "0.5"; 
 var leftMargin = "0.5"; 
 var rightMargin = "0.5"; 
</script> 
<script type="text/javascript" src="http://web2.pdfonline.com/pdfonline/pdfonline.js"> 
</script> 
<!-- END: PDF Online Script -->

(e)Click on "Save Templates" and Refresh your site.


Bookmark and Share
Subscribe


Continue Reading...

How To Redirect Blogger URL To Another URL

1.Log in to your dashboard--> layout- -> Edit HTML

2.Scroll down to where you see this:

  </head>

3.Add below code  into your template just above the </head> tag.




<meta http-equiv="refresh" content="0;url=http://yournewurl.com"/>

It should Look Like This.


<head>
<meta http-equiv="refresh" content="0;url=http://yournewurl.com"/>
</head>

4.Replace http://yournewurl.com with the URL you want to redirect your old blog.

5.Click on "Save Templates" and you are done.

Now your blog traffic will be redirected to your new address. 


Bookmark and Share
Subscribe


Continue Reading...

How To Remove Label Posts Count From Blogger

To remove the label count just follow the below simple steps:-

1.Log in to your dashboard--> layout- -> Edit HTML

2.Click on "Expand Widget Templates"

3.Scroll down to where you see this:



<span dir='ltr'>(<data:label.count/>)</span>

4.Now delete above code.

5.Click on "Save Templates" and Refresh your site.

Bookmark and Share
Subscribe


Continue Reading...

How To Add Image Hover Effect to Blogger

1.Log in to your dashboard--> layout- -> Edit HTML

2.Scroll down to where you see </head> Tag

3.Copy and Paste below CSS code above </head> Tag


<style type="text/css">

a.linkopacity img {
filter:alpha(opacity=50);
-moz-opacity: 0.5;
opacity: 0.5;
-khtml-opacity: 0.5;}


a.linkopacity:hover img {
filter:alpha(opacity=100);
-moz-opacity: 1.0;
opacity: 1.0;
-khtml-opacity: 1.0; }

</style>

4.Now Click on "Save Templates"

Now whenever you embed your image in blog or blog posts you use codes like below.


<a href="target URL of your image" target="_blank" alt="Any name you like"><img src="Link of your image"/></a>
Look at the Example below.

<a href="http://bloggertipandtrick.blogspot.com" target="_blank" alt="Blogger Tips"><img src="http://i626.photobucket.com/albums/tt346/wam8387/toyotacar-2.jpg"/></a>


5.Replace above code with below code to have hover effect..


<a class="linkopacity" href="target URL of your image" target="_blank" alt="Any name you like"><img src="Link of your image"/></a>
It will look like this.

<a class="linkopacity" href="http://bloggertipandtrick.blogspot.com" target="_blank" alt="Blogger Tips"><img src="http://i626.photobucket.com/albums/tt346/wam8387/toyotacar-2.jpg"/></a>


Bookmark and ShareSubscribe


Continue Reading...
 

Blogroll

Site Info

Text

ProBlogger Copyright © 2010.