Recent content by danielcopelandnz56

  1. D

    CSS question

    Er... partial thanks. That fixes my centring, but my background has disappeared.
  2. D

    CSS question

    #backgroundbody. I did check and double-check for mistyped IDs. ---------- Post added at 12:33 AM ---------- Previous post was at 12:29 AM ---------- Actually, here's the full CSS as well. I can't find any errors; maybe you can.body { margin : 0; border : 0; padding : 0; color ...
  3. D

    CSS question

    Here's my content HTML:<body> <div id='backgroundbody'> <div id='whitebox'></div> <div id='content'> <div id='heading'><img src='TITLEIMAGE.gif' /></div> <div id='contactdetails'>[address and phone number]<br /> [e-mail] </div><hr /> <div id='topmenu'> <div...
  4. D

    CSS question

    Yet another CSS problem. I can't get my content centred horizontally. The solution people give to this, in web forum after web forum, is:#container { width : 1024px; margin-left : auto; margin-right : auto; }...which is what I have, but isn't working. I have tried several changes to my...
  5. D

    CSS question

    Problem solved! Many thanks.
  6. D

    CSS question

    Thanks for the reply; it was very helpful. I'm afraid I didn't do what you suggested, because I'm not in a position to assume that users will be using CSS3-compliant browsers; but I was able to solve the problem in a different way with the information you gave me. Now I have another problem...
  7. D

    CSS question

    On one of my pages, I have a background image with an empty <div> over the top of it; the empty <div> is a partly-transparent white background for the text <div>. I can't put the text inside the empty <div>, because then the text is partly transparent as well. The problem I'm having is that...
  8. D

    Moving files out of a password-protected directory

    I've made the changes, but I can't tell whether they've worked because it's now telling me "open_basedir restriction in effect". What do I do? EDIT for detail: this applies to the use of file_put_contents(). copy() has worked fine on previous tests. ---------- Post added at 06:49 AM...
  9. D

    Moving files out of a password-protected directory

    OK. The problem I have is this. I have two main sections on my website so far: the public part, which anyone can access, and a password-protected directory. The idea is that I'll put public pages in the public part, and admin pages in the protected directory. Admin pages will have functions...
Top