Jump to content

Little Goat

Members
  • Posts

    733
  • Joined

  • Last visited

Everything posted by Little Goat

  1. Little Goat

    little help

    maybe if you Search Google you will find one.LG
  2. you can probably set it for 0 too.LG
  3. instead of putting sizes in pixels, use percentages.LG
  4. OK, I worked this out by modifying a PHP counter file:this takes three files, one of which you should already have.the first, which you should have already, is the one that goes there. al you have to do is add this code for each link: <form action="add_documents.php" method="post"><input type="hidden" name="file" value="content.txt"/><a href="javascript:submit()">the first file</a></form> you can change the value of the hidden input to change the file.next, you have the file that recieves the data: (which you must name add_documents.php) <?php// Open the file for reading$filename=$_POST["file"];$fp = fopen($filename, "r");// Get the contents$contents = fread($fp, 1024);// Close the filefclose($fp);// display contentsecho $contents;?> this code does not need any editing, just put it inside your page where you want the content to show up.last of all, you must have the content file that corresponds with the filename in the first code snippet. if you want html tags inside the content, the file must have that.I'm sorry, I don't have a web host yet or I would post a link. let me know if it works. (it worked for me! )LGEdit: and if you want to name the file something else, change the form action.Edit2:forgot to say, you must have a PHP enabled server, and since PHP is a server-side scripting laguage, it will only work on a server, not just viewing on your computer.
  5. maybe using ID references.?.maybe if you give me your current copy script I can work it out. LG
  6. gray is what to take out, red put in.LGEdit:you can also put left or right in the red code instead of center. or leave it out.
  7. sorry, but no, thats not correct.the frameset is used instead of the body.
  8. in the style attribute of the frame add this: text-align:center; LG
  9. well, why don't you forget the list and use <br />?LG
  10. do you know css?text-align:center,left, or rightLG
  11. since your target is showframe: your iframe's name needs to be showframe: needs to be:<iframe src="velkommen.html" style="border:1px black solid;" name="showframe" scrolling="yes" frameborder="no" align="center" height = "300px" width = "350px"></iframe> LG
  12. document.idofdiv.idofpic.src="C:\whateverfolder\file.gif" you can also get the src using the same method: myvar=document.idofwhateveritsin.idofpic.src LG :ph34r:
  13. maybe try just using spaces.LG:ph34r:
  14. well if you want help, post what you have already tried.after that we can fix your code, but unless you have an Idea of what you're trying to do, we can't help you.LG
  15. the negative margins do that. maybe if you put no margin on the h3s and just put a positive margin on the rest.why is your li margin -40? I can hardly see the links!LGEdit: oh, didn't see your edit, but I accesed your css and the code you posted is not the only problem. post the li css too.
  16. did you put your files in the www folder and go to localhost?it has worked for me with 98se.LG
  17. well, first maybe your other divs are on top of the footer.LG
  18. I've got 98se, I'd recommend getting easyphp.easyphp.orgI think you can even translate it to any language that isn't there if you need to too. LG
  19. Hey thanks scott. um, can I have the frame point straight to the sound? will that work?LG
  20. Little Goat

    CSS table help

    I'm not sure exactly what you are trying to do.could you explain your problem?LG
  21. well, you can always put it in a zip file.
  22. yea, i'm not looking from a flash designers point of view, but I like the design.LG
  23. Hihow can you add sound to a page that controls frames if you can't use body?ok, say I have a page that has a frameset. in the frames are pdfs. I want to have a background sound, but as you know I can't put it in the frame files. how would I do this? aural CSS maybe?Thnx LG
×
×
  • Create New...