Question:

How do you create your own blogger header for your blogspot?

by  |  earlier

0 LIKES UnLike

How do you create your own blogger header for your blogspot?

 Tags:

   Report

2 ANSWERS


  1. Same thing, if your blogger allows HTML, here is what you can do.

    After stating your

    <html><head>

    You can copy and paste the code below.

    Start with a,

    <style type="text/css">

    Then here is how you can edit your blogger header.

    Below the <style type="text/css">

    You can paste something like this, so that you can edit the font,size & colour.

    Example i want my - font to be Arial, so i put Arial below,

    -And my font size is 8pt/8px & colour is black(#000000).

    -You can also put borders which forms like a box.

    -And text-align, is the word to be input is center,to the left/right.

    .h1 {

    font-family:Arial;

    font-size: 8pt;

    text-transform:none;

    color:#000000;

    background:none;

    border: 0px soild #000000;

    text-align: center;

    }

    After typing finishing.

    Remember to end with a,

    </style></head>

    Then start to type

    <div class="h1">YOUR BLOG HEADER WORD.</div>

    And in your site, it will appear the font,size & colour you wanted it to be. :)

    If you want the code, copy and paste the code below.

    I have typed it out for you.

    <------------------->

    <html><head>

    <style type="text/css">

    .h1 {

    font-family:Arial;

    font-size: 8pt;

    text-transform:none;

    color:#000000;

    background:none;

    border: 0px soild #000000;

    text-align: center;

    }

    </style></head>

    <center><div class="h1">YOUR BLOG HEADER WORD.</div></center>


  2. if your blog allows HTML

    you can use the following

    <h1> for a large heading </h1>

    to...

    <h6> for the smallest size heading </h6>

    or you can also learn more cool tricks using HTML, such as changing colors and what not

Question Stats

Latest activity: earlier.
This question has 2 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.