Showing posts with label Customize - Others. Show all posts
Showing posts with label Customize - Others. Show all posts

Tutorial: How To Set Password for Blogger Post



How to make blogger post private?
How to encrypt blogger post?
How to create blog post with password?

First, please proceed to http://www.vincentcheung.ca/jsencryption/instructions.html.

Go to Dashboard > Design > Edit HTML.

Then add the JavaScript decryption code after the tag in the HTML code of your blog. Copy and paste the following code:


Then proceed to http://www.vincentcheung.ca/jsencryption/.

You'll see this page.

form empty

Then type for secret key at the "Key" area and the secret message at the "Plain Text" area.

filled form

After doing so, hit the Encrypt button under the "Plain Text" area.

Then scroll down a little and you'll see the "HTML Code" area. Highlight, copy and paste the HTML code into your POST EDITOR.

html code


And that's it!

Here's the result of the example shown. The secret key is "the key". Go and click on it.






How to delete navigation bar on Blogger Draft template?
How to remove default bar on Draft Template Designer?

blogger draft navigation bar

It can also be done via this method. Navigate yourself through:

Dashboard > Design > Template Designer > Advanced > Add CSS

And then add this:

#navbar-iframe {display: none !important;}

Click "Apply to Blog" and you're done.

Credit: Comment by Bytexpert

P/S: Click here for the previous workable method.






How to delete navigation bar on Blogger Draft template?
How to remove default bar on Draft Template Designer?

The previous method to remove default Blogger navigation bar cannot be used anymore with templates designed from Blogger Draft Template Designer.

blogger draft navigation bar

Here's how to remove the navigation bar on Template Designer's templates:

Dashboard > Layout > Edit HTML

Add this code:

#navbar-iframe {
display: none !important;
}

just above this line:

]]>

(instead of below

How To Set Password for Blogger Post



How to make blogger post private?
How to encrypt blogger post?
How to create blog post with password?

It's basically called text encryption and decryption. JavaScript is used to perform this function.

To learn how, please proceed to http://www.vincentcheung.ca/jsencryption/instructions.html.

Enjoy! =)

***UPDATE 11/8/2010***: A thorough tutorial on setting password for blog posts can be found at our LATEST TUTORIAL GUIDE. Check it out.




How To Remove Blogger Navigation Bar



How to hide blogger navigation bar?
How to remove top bar on blogger?
How to hide blogspot navigation bar?


Here's how:

Dashboard > Layout > Edit HTML

Add this code:

#navbar-iframe {
display: none !important;
}

just below this line:


then save it, view your blog and it's gone!

***UPDATE 3/4/2010: This method can't be used on template designed by Blogger Draft Template Designer. To remove the default navigation bar in Draft, the method can be found here.