Copyright?

  • Thread starter Thread starter Deleted member 5665
  • Start date Start date
D

Deleted member 5665

I am working on my own topsite software but I can't find out how to add a copyright at the clear bottom center of my forums, but also. I need help encoding it like when you when someone tries to remove it. It will only cause an error.
 
Thanks, but still one other problem. It won't stay at the bottom of the site page. 😛 It like kinda sticks up on the top.
 
Its on localhost, but I am about to upload it onto your host. Sense im using your host for it. 🙂

But here's a screenshot.

http://i46.tinypic.com/ea03zq.jpg

I put a red box around where the copyright is. Also another box where I want the copyright to be.
 
You can do one of the following:

You can put
Code:
<br/>
there until it reaches bottom or, you can create a footer float. To learn to do floats, search google about making floats from css and html. 😉
 
ChrisG2010 said:
You can do one of the following:

You can put
Code:
<br/>
there until it reaches bottom or, you can create a footer float. To learn to do floats, search google about making floats from css and html. 😉

Yep, I been using the html, php, etc programming school site this entire time. :rofl:

It just does not give me all the information I need.
 
I think it's uhhh, I may be wrong though.


Code:
<div="copyright">
    <br /> &copy; yoursite 2009 | All Rights Reserved
</div>


NOTE: I may be wrong.
 
dotDavid said:
Make sure you close your div tag 🙂
I r HTML handicapped. That's just from staring at HTML and editing the copyrights and adding my oen to forums, etc.
 
Um, some suggestions? 1) Learn HTML and learn CSS. Do that task before you start trying to code all of that.
 
Hard to help with out the source. You really need to learn HTML and CSS before taking on such a project. Here is a quick down and dirty as to how I would see the code. Of course their would have to be a style sheet added to position everything. Right now it looks like it is all done in tables

Code:
<body class="oneColElsCtr">

<div id="container">
  <div id="banner">&quot;place your banner in this div&quot;</div>
  <div id="text">&quot;place your text in this div&quot;</div>
  <div id="navbar">&quot;place your menu bar here&quot;</div>
  <div id="mainContent"> <a> &quot;copy and paste the contents of your script into this div&quot;</a>
      <!-- end #mainContent -->
  </div>
  <div class="footer" id="footer">&quot;place your footer info here...&quot;</div>
<!-- end #container --></div>
</body>
 
Back
Top Bottom