Header text

Discussion in 'HTML & Website Design' started by monsterclips, Mar 11, 2007.

  1. #1
    Hi

    How can i hide my header text the same size ?

    Header 1 is so big and then it goes smaller up to header 6

    Is there a way to either hide it because im using it more
    as tags for the serps or maybe to something with it so that it
    doesn't spoil my website:D

    Cheers
     
    monsterclips, Mar 11, 2007 IP
  2. aras

    aras Active Member

    Messages:
    533
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    60
    #2
    Use CSS to set a new size for h1 html tag.
     
    aras, Mar 11, 2007 IP
  3. monsterclips

    monsterclips Banned

    Messages:
    759
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks

    I heard about this method but never got around to look
    into it. I dont know much about coding or css but i guess
    this is a nice small task to get started

    Cheers
     
    monsterclips, Mar 11, 2007 IP
  4. bacanze

    bacanze Peon

    Messages:
    2,419
    Likes Received:
    127
    Best Answers:
    0
    Trophy Points:
    0
    #4
    to style headers, do this

    h1 {font-size: 2em;
    colour: #000000}
    
    h2 {font-size: 1.5em;
    colour: #FFFFFF;}
    
    /* etc etc */
    
    HTML:
    If you are not sure which style to use regarding font, then I suggest you a post I posted last week.

    http://csschat.com/showthread.php?t=26
     
    bacanze, Mar 11, 2007 IP
  5. monsterclips

    monsterclips Banned

    Messages:
    759
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #5
    This is how my source code look when i entered
    the header codes yesterday
    ( Blue )

    <HEAD>
    <TITLE> Cell Phones</TITLE>
    <meta name="Description" Cheap Cell Phones.">
    <meta name="Keywords" Cell,Phones,.......... ">
    <META NAME="Author" CONTENT=" Me ">
    <meta name="robots" content="index,follow">


    __________________________________________________


    <h1>Cell Phone Equipment</h1>
    <h2>Cell Phone Chargers</h2>
    <HEAD>
    <TITLE> Cell Phones</TITLE>
    <meta name="Description" Cheap Cell Phones.">
    <meta name="Keywords" Cell,Phones,.......... ">
    <META NAME="Author" CONTENT=" Me ">
    <meta name="robots" content="index,follow">



    Should i do something like this instead:


    <HEAD>
    h1 {font-size: 2em;colour: #000000}
    <h1>Cell Phone Equipment</h1>
    h2 {font-size: 1.5em;colour: #FFFFFF;}
    <h2>Cell Phone Chargers</h2>

    <TITLE> Cell Phones</TITLE>
    <meta name="Description" Cheap Cell Phones.">
    <meta name="Keywords" Cell,Phones,.......... ">
    <META NAME="Author" CONTENT=" Me ">
    <meta name="robots" content="index,follow">
     
    monsterclips, Mar 11, 2007 IP