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.
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?
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.