Showing posts with label Blogger Tips and Tricks. Show all posts
Showing posts with label Blogger Tips and Tricks. Show all posts

Wednesday, September 2, 2009

Internet Marketing for Business – Blog Marketing Strategies


Internet Marketing for Business – Blog Marketing Strategies – Looking for simple ways to reduce your advertising by as much as 50% – Go to this page NOW for detailed instructions and a blueprint on how to do it. Services available for Port St Lucie, West Palm Beach, Fort Lauderdale, Miami, Orlando, Tampa, covering the State of Florida.

Sunday, August 30, 2009

How to hide, disable or remove navbar from blogger

If you ever desired to get rid of that odd-looking navbar floating uselessly on top of your blogger blog, or ever feared of any visitor flagging your blog through the navbar menu, then its time to shed your fear.

Hey!

If you ever desired to get rid of that odd-looking navbar floating uselessly on top of your blogger blog, or ever feared of any visitor flagging your blog through the navbar menu, then its time to shed your fear.

Today, I would tell you in easy steps on how to remove or disable or hide the navbar from your blog.


A navbar looks like this


    Step 1: Sign in to your blogger account and click on layout



      Step 2: Click on HTML



        Step 3: Add the below html code as specified in the below image

        #navbar {
        height: 0px;
        visibility: hidden;
        display: none;
        }
        Example:


          Step 4: Save your changes
            Remember, this trick only hides or disables the navbar. It does not delete it. So, if ever you wish to show your navbar again, simply remove the code from the html page, that you inserted right now.Enjoy!

            Thursday, May 21, 2009

            How to hide the Blogger Navigation Bar

            When you first create a Blog and you use a default template you will recognize a Navigational bar on the Top of your Blog. Some Call This Nav-Bar for short. So if you want to hide it or you don't want to see it here's how.

            Step 1: Go to Blogger>Layout>Edit HTML

            Step 2: Find this code:
            </b:skin>

            or
            ]]></b:skin>


            Step 3: Just After the code in Step 2 paste this code:
            #navbar-iframe {
            height:0px;
            visibility:hidden;
            display:none
            }


            Your Code Should Look something like this:
            #navbar-iframe {
            height:0px;
            visibility:hidden;
            display:none
            }
            </b:skin>


            Step 4: Save

            Many Bloggers dont Like the Nav bar because for them its not that professional looking thats why they want to hide it.

            If you Have Other Problems in Blogger that is not yet discuss on this site, you can send your questions here at Contact Me

            Monday, May 18, 2009

            Cant click my Post Title in blogger

            Some Blog Template have this problem, they cant click there post title or they cant get into that post.. or in other words the post title is not link to that post or it is not a link. :D

            Do you get what i mean?

            Its where you cant go to your specific post because the title of your post is not clickable.

            Damn its hard to explain. just here it is... Step by step guide on how to make your post title link to your post.

            Step 1: Go to Blogger>Layout>Edit HTML

            Step 2: Check the "Expand Widget Templates Check Box"

            Step 3: Find his Code:
            <data:post.title/>


            Step 4: Replace all the Step 3 into this code:
            <a expr:href='data:post.link'><data:post.title/></a>

            - if you find 2 or 3 just replace it with that code.

            Step 5: Save

            That's it hope this helps..

            Sunday, May 17, 2009

            Fastest way to aDD a read more Expandable Post

            I just thought of this after making a long Tutorial on adding a Read More Expandable Post For Blogger

            So ill Teach you more faster way on making a read more Expandable Post

            Step 1: Go to Blogger>Layout>Edit HTML

            Step 2: Back Up your Theme or Template.
            You Must Back up your theme because so if you do something wrong you can easily redo your old template in its usable form.


            Step 3: Check the Expand Widget Templates Check box

            Step 4: Find the This Code
            <data:post.body/>


            Step 5: After Finding step 4, replace it with this code:
            <b:if cond='data:blog.pageType == "item"'>
            <style>.fullpost{display:inline;}</style>
            <p><data:post.body/></p>
            <b:else/>
            <style>.fullpost{display:none;}</style>

            <data:post.body/>

            <b:if cond='data:blog.pageType != "item"'><br />
            <a expr:href='data:post.url'>Read more...</a>
            </b:if>
            </b:if>




            Now we are done Editing in the source code Now we will go on how to separate the outer post to the inner post.

            Step 6: Go to Blogger>Posting>Create Post

            Step 7: In using Read More on your post there is a code to add every time you post. This code separates the outer post and the Full post.
            <span class="fullpost">

            </span>


            The Outer post is the one that is viewed first or what they called a teaser text.

            The Inner post is the one that is hidden when the post is not fully viewed.

            The Full post is the one where the complete post are. When you put it on a math equation this should look something like this:

            Outer Post + Inner Post = Full post

            This is a example post:
            Your outer post should be here.
            <span class="fullpost">
            Inner post should be here.
            </span>


            So that's it the more simpler explanation.

            adding a Read More Expandable Post For Blogger

            This is one of the most popular tricks of blogger that many Blogger use. This is what you called Read More Post or some called it expandable post or Read Full post etc.

            So here it is.. the step by step tutorial on how to add a Read More Expandable Post For Blogger

            Step 1: Go to Blogger>Layout>Edit HTML

            Step 2: Back Up your Theme or Template.
            You Must Back up you theme because so if you do something wrong you can easily redo your old template in its usable form.


            Step 3: Check the Expand Widget Templates Check box

            Step 4: Find the This Code
            <data:post.body/>


            Step 5: After Finding step 4, add this code above.
            <b:if cond='data:blog.pageType == "item"'>
            <style>.fullpost{display:inline;}</style>
            <p><data:post.body/></p>
            <b:else/>
            <style>.fullpost{display:none;}</style>


            The Code Should look something Like this:
            <b:if cond='data:blog.pageType == "item"'>
            <style>.fullpost{display:inline;}</style>
            <p><data:post.body/></p>
            <b:else/>
            <style>.fullpost{display:none;}</style>

            <data:post.body/>


            Step 6: Add this code Bellow Step 4:
            <b:if cond='data:blog.pageType != "item"'><br />
            <a expr:href='data:post.url'>Read more...</a>
            </b:if>
            </b:if>


            The Code Should look something Like this:
            <b:if cond='data:blog.pageType == "item"'>
            <style>.fullpost{display:inline;}</style>
            <p><data:post.body/></p>
            <b:else/>
            <style>.fullpost{display:none;}</style>

            <data:post.body/>

            <b:if cond='data:blog.pageType != "item"'><br />
            <a expr:href='data:post.url'>Read more...</a>
            </b:if>
            </b:if>




            Now we are done Editing in the source code Now we will go on how to separate the outer post to the inner post.

            Step 7: Go to Blogger>Posting>Create Post

            Step 8: In using Read More on your post there is a code to add every time you post. This code separates the outer post and the Full post.
            <span class="fullpost">

            </span>


            The Outer post is the one that is viewed first or what they called a teaser text.

            The Inner post is the one that is hidden when the post is not fully viewed.

            The Full post is the one where the complete post are. When you put it on a math equation this should look something like this:

            Outer Post + Inner Post = Full post

            This is a example post:
            Your outer post should be here.
            <span class="fullpost">
            Inner post should be here.
            </span>


            So that's it Hope you understand. :D

            Saturday, April 25, 2009

            Posting a Blog Post | Blogger | Basic

            Here i will Give you the step by step guid on how to post on your Blog in Blogger.



            Step 1: Go To Blogger>Posting>Create

            Step 2: Write the Title of your Post in the Tittle Section
            - Be Sure the Tittle is relevant to your post
            - Do Not Use Tittles Like "Post 1" "Post 2", as I said. Be sure the tittle is relevant to your post.
            - Be Creative


            Step 3: Write The Content of you Post in The Biggest box.
            Be Sure you Check you Spelling.
            - Do not Leave this Blank.
            - Tittle and the post Must be relevant to each other.


            Step 4: Add a Label in "Label for this post".
            - This will be listed on the Category Widget if you have one.


            Reminder, you must post Related Topic of what your blog is About. Don't go too Random just to have a post in your Blog.

            Post Some Quality Content or that has sense.

            Remember in Make Money Online Level 2 we Choose What to blog or what topic are we going to talk about. Don't go too much Random to your Blog.


            Hope it Helps to you. But this is Just the Basic. And remember Basic is the key to advance ^^

            how to select a Good Niche or topic for your blog | Level 1

            Before Starting Registering in blogger we must know

            What to Blog

            .

            Think 1st... what I am Good at? What d0 I want in life?

            Here are some

            Tips in selecting a good Niche

            .

            Tip 1: What are you good at?

            Tip 2: Choose a topic your passionate with.

            Tip 3: it’s better to have experience on what you’re going to show and talk about.

            If you Like and you have a Good knowledge what you are Going to Blog, you will not be bored or you will enjoy blogging.

            Making Money Online with Blog is Not that fast, 1 week? no It takes Months or Sometimes A year to make A real money Online.

            But Don't be Discourage. As I said, "If you love what you are Blogging" you will not notice the Time and Date. you will Just Wake Up you are making money online.

            So there you have a basic knowledge in

            selecting a good niche

            . Hope it helps!!

            How to add Gadgets in Blogger

            Inside is the

            Step by step Tutorial on how To add A Gadget

            in Blogger.
            Also there are Some Basic tips in navigating in Gadgets section.



            Step 1: Go to Blogger>Layout>Page Element

            Step 2: Click "Add a Gadget". Where you want to place the Gadget.

            Step 3: You will see a List of Gadgets there. Try out some. Try to go to the most popular gadgets category. There you will see the most used by widgets by other Bloggers.

            There you have it.

            A Simple Step by Step tutorial in Adding a Gadgets

            .

            Friday, April 24, 2009

            Where Can i Download Blogger Template For free

            Here is the List of Site where you can

            Download Blogger template for Free

            .

            The list of site that I'm listing is where i personally Choose my template to my Blogs.

            So here is the sites where you can

            download Blogger Templates for Free

            .

            eblogtemplates.com

            mashable.com

            deluxetemplates.net


            So there you have it. Be Sure to Come Back here ^^

            Also Check out This Posts:
            How to Change Blogger Theme | Basic
            How to Install a Blogger XML Template

            How to Install a Blogger XML Template

            Here is the Advance Tutorial on Changing your theme.

            You will learn and see a Detailed Tutorial In Changing your Template.


            Check out eblogtemplates.com to there post How to Install a Blogger XML Template

            This is a very Good Tutorials in installing a XML Template. Good Luck!!

            Also Check out this post:
            How to Change Blogger Theme | Basic
            Where can I Download Blogger Templates

            How to Change Blogger Theme | Basic

            In this Tutorial I will teach you

            how to change your Blogger theme to another Basic Blogger theme in just 3 steps

            .

            What I'am talking about is the default theme that blogger provided to you.

            So this is just the Basic, there are no XML or any other HTML knowledge required Just Follow this steps In Changing Blogger theme (Basic)


            Step 1: Go to Blogger>Layout>Pick New Template

            Step 2: Pick your Desired Template.

            Step 3: Click "Save"

            So if your not satisfied in Blogger Basic Theme you can Go Advance.

            Check out this post:

            How to Install a Blogger XML template.
            Where can I Download Blogger XML Templates.

            How to Register in Blogger

            Here I will teach you how to Properly Register in Blogger.


            Step 1: Go to Blogger.com

            Step 2: Click "Create a Blog"

            Step 3: Fill up The Forms Correctly. As I said Don't put Trash Information Like "asdfgh" and "1234567".

            Reminder: Please put the Email Address of your Gmail account. Using one Google Account will give you a good start in making money online.

            Don't have gmail account? Check How to register to Google or Gmail

            How to Use Google AdSense in Blogger

            Here you will

            Learn how to Put Google AdSense In Blogger

            .

            So Here are the Step By Step Tutorials on

            how to Put Google AdSense in Blogger

            .

            As I Said in My post Fastest way to Make Money Online #1 Google AdSense is one of the most easiest and fastest Make Money Online tool. So Here I am to teach you how to get into Google AdSense.

            Step 1: First you need to Sign-up in Google AdSense. If you are already Signed-up, Proceed to Step 2.

            Step 2: Go To Blogger>Layout>Page Element

            Step 3: Click "Add a Gadget" (where you want to put your adds).

            Step 4: Find the "AdSense Widget" and then click "+" sign.

            Step 5: Configure your Adds.
            - You can pick the Size of the adds you want by the "Format" Drop Down Box
            - You can Configure the color of the text Adds, background and Border Color.


            Step 6: After Configuring your Adds, Click "Save"

            You are now starting to

            Make Money OnLine

            .

            Reminder: Sometimes

            Google AdSense

            adds take a little time Showing adds sometimes it takes days. This usually occur when you have a new Blog or newly Signedup in Google Adsense.

            Optimize your Page Title | SEO | Blogger

            Blogger Templates

            and other

            Templates

            don't come with a fully

            search engine optimized

            (

            SEO

            ) <tittle> Tag, meaning you aren’t maximizing your

            blog

            to rank better in Google.

            Blogger Templates

            and other

            Templates

            have this Format:
            BLOG NAME | BLOG POST TITLE


            And

            Search Engine

            such as

            Google

            reads your

            Page Title

            from Left to Right.

            So if The

            Search Engine

            will Crawl your page it will Always Craw First your BLOG NAME Before the BLOG POST TITLE. And

            Search Engine

            Sometimes Don't Read The Hole Title but only reads some few words from the left.

            So here is the

            Step by Step Guide in Optimizing Your page Title to the maximum

            .


            Step 1: Go To Blogger>Layout>Edit HTML

            Step 2: Search For this Code. This is Always Near the Top.
            <title><data:blog.pageTitle/></title>


            Step 3: Replace that Code with this Code
            <b:if cond='data:blog.pageType == &quot;index&quot;'>
            <title><data:blog.title/></title>
            <b:else/>
            <title><data:blog.pageName/> | <data:blog.title/></title>
            </b:if>


            Step 4: Save your

            template

            and go back to your blog. Click into any individual post and look at the page title.

            All your

            Blogger

            Title Post are Search Engine Optimized (SEO) to the fullest.

            How to put Search Box in Blogger

            Here is an easy

            Step By Step Tutorial in Putting SearchBox in Blogger



            Step 1: Go To Blogger>Layout>Page Elements

            Step 2: Click "Add a Gadget" where you want your Search Box to be placed.

            Step 3: Find "HTM/JavaScript"

            Widget

            then Click "+"

            Step 4: Paste this Code

            <p><form id="searchthis" action="http://YOUR-BLOG-URL.blogspot.com/search" style="display:inline;" method="get">
            <input id="b-query" maxlength="255" onfocus="value=''" value="Search Here" name="q" size="33" type="text"/>
            <input id="b-searchbtn" value="Search" type="submit"/>
            </form></p>

            Reminder 1: Change the YOUR-BLOG-URL to your own

            Blog

            URL


            Step 5: Click "Save"

            How to make more than 5 Recent Comments | Blogger

            This is the very Simplest way of

            adding more than 5 Recent Comments

            in your blog.

            Step 1: Go To

            Blogger

            >Layout>Page Elements

            Step 2: Click "

            Add a Gadget

            " where you want to place your

            Recent Comments



            Step 3: Find the "

            Feed Widget

            " and Click "+" sign on the right side.

            Step 4: Paste this code in the "Feed URL" and then click "Continue"
            http://YOUR-BLOG-URL.blogspot.com/feeds/comments/default/?max-results=7

            Reminder 1: Be sure to change the YOUR-BLOG-URL to your own Blog URL.

            Reminder 2: Change the max-results=7 to your desired number of post

            Step 5: Click "Save"

            How to make more than 5 Recent Post | Blogger

            This is the very Simplest way of

            adding more than 5 Recent Post

            in your blog.

            Step 1: Go To

            Blogger

            >Layout>Page Elements

            Step 2: Click "

            Add a Gadget

            " where you want to place your

            Recent Post



            Step 3: Find the "

            Feed Widget

            " and Click "+" sign on the right side.

            Step 4: Paste this code in the "Feed URL" and then click "Continue"
            http://YOUR-BLOG-URL.blogspot.com/feeds/posts/default/?max-results=7

            Reminder 1: Be sure to change the YOUR-BLOG-URL to your own Blog URL.
            Reminder 2: Change the max-results=7 to your desired number of post


            Step 5: Click "Save"

            Recent Post using Feeds | Blogger

            This is the very Simplest way of adding

            Recent Post

            in your blog.

            Step 1: Go To

            Blogger

            >Layout>Page Elements

            Step 2: Click "

            Add a Gadget

            " where you want to place your

            Recent Post



            Step 3: Find the "

            Feed Widget

            " and Click "+" sign on the right side.

            Step 4: Paste this code in the "Feed URL" and then click "Continue"
            http://YOUR-BLOG-URL.blogspot.com/feeds/posts/default/

            Reminder: Be sure to change the YOUR-BLOG-URL to your own Blog URL


            Step 5: Click "Save"


            You can also

            modify the numbers of post

            you want to show.

            See

            tutorials

            on List more than 5 Post in

            Recent Post


            Recent Comments using Feeds | Blogger

            This is the very Simplest way of adding

            Recent Comments

            in your blog.

            Step 1: Go To

            Blogger

            >Layout>Page Elements

            Step 2: Click "

            Add a Gadget

            " where you want to place your

            Recent Comments



            Step 3: Find the "

            Feed Widget

            " and Click "+" sign on the right side.

            Step 4: Paste this code in the "Feed URL" and then click "Continue"
            http://YOUR-BLOG-URL.blogspot.com/feeds/comments/default/

            Reminder: Be sure to change the YOUR-BLOG-URL to your own Blog URL


            Step 5: Click "Save"


            You can also

            modify the numbers of comments

            you want to show.

            See

            tutorials

            on List more than 5 Comments in

            Recent Comments


            Creative Commons License