position

Discussion in 'HTML & Website Design' started by masterhaseeb, Jul 20, 2008.

  1. #1
    Hey guys iam working on a clan layout Css&Html and coding it on notepad.Iam facing a problem i want to put that copyright text to the bottom of page.
    Here is the Screeny Please help me.
    [​IMG]
     
    masterhaseeb, Jul 20, 2008 IP
  2. BlueDevil

    BlueDevil Peon

    Messages:
    19
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Sorry, but I don't see the problem. It is at the bottom.
     
    BlueDevil, Jul 20, 2008 IP
  3. hydroflame7

    hydroflame7 Peon

    Messages:
    50
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    well I'm assuming you mean you want the copyright notice to be under the match info box. You probably need to be more specific, like are you using tables or divs?
     
    hydroflame7, Jul 20, 2008 IP
  4. 4220niller

    4220niller Peon

    Messages:
    35
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #4
    It could be done easy with CSS. Are you using CSS or TABLES?
     
    4220niller, Jul 20, 2008 IP
  5. dylanj

    dylanj Peon

    Messages:
    173
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    0
    #5
    CSS:
    
    #matchInfo {
    text-align: center;
    }
    #matchInfo div {
    text-align: left;
    }
    
    Code (markup):
    HTML:
    
    <div id="matchInfo">
      <div>
        <p>Match info goes here</p>
      </div>
      <p>Copyright Text Goes Here</p>
    </div>
    
    Code (markup):
    Try that. No guarantees, but i'm quite sure that this will work.
     
    dylanj, Jul 20, 2008 IP
  6. masterhaseeb

    masterhaseeb Member

    Messages:
    31
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #6
    hmm thanks problem solved already.
     
    masterhaseeb, Jul 20, 2008 IP