Jump to content

Sniffy

Members
  • Posts

    403
  • Joined

  • Last visited

Everything posted by Sniffy

  1. Sniffy

    Domain Name

    I think vchris means like 'new additions' of his templates that he makes.To vchris: Make the new additions text orange like boen_robot said, but h-center it over the thumnail and align to the top with the welcome to my portfolio sign.
  2. Sniffy

    Domain Name

    Increase the length of the content area, and drop the main content(dates and entries) downward.|===WELCOME===|| || || || || || ||===CONTENT===|And I'm not sure if boen_robot was trying to imply this or not, but put a thumbnail with a link to some of your examples of past work and stuff in that space.
  3. Thanks, now I know how to stop some idiot from taking all the info out of user text files.
  4. Since I started I cannot answer this problem, but I can still comment. I never knew preg_match() had to have the // delimeters.So would ereg_match() work for ## delimeters?And yes I did know that you would post next.
  5. So I'll be able to use it in XHTML?
  6. Sniffy

    Domain Name

    Add a some sort of fading border around the yellow text in the content area, and space "Welcome to my portfolio" a little more upwards by increasing the length of the content box.
  7. Is your image on awardspace or on your local desktop?
  8. If you want to make several buttons for each id then use this: <html><head><script type='text/javascript'>function makeHide(id){document.getElementById(id).style.display = "none";}function makeShow(id){document.getElementById(id).style.display = "inline";}</script></head><body><a href='...' id='...'>....</a><input type='button' onclick='makeHide(...)' value='...'><input type='button' onclick='makeShow(...)' value='...'></body></html> Change ... according to your document.Now, if you want to make all elements show/hide on the clicks, then use either of these codes. <html><head><script type='text/javascript'>function hide(){document.getElementsById("your_id").style.display = "none";}function show(){document.getElementsById("your_id").style.display = "inline";}</script></head><body><input type='button' onlick='hide()' value='Hide'><input type='button' onclick='show()' value='Show'><a href='...' id='your_id'>...</a><a href='...' id='your_id'>...</a></body></html> <html><head><script type='text/javascript'>function hide(){document.getElementsById("your_id1").style.display = "none";document.getElementsById("your_id1").style.display = "none";}function show(){document.getElementsById("your_id1").style.display = "inline";document.getElementsById("your_id2").style.display = "inline";}</script></head><body><input type='button' onlick='hide()' value='Hide'><input type='button' onclick='show()' value='Show'><a href='...' id='your_id'>...</a><a href='...' id='your_id'>...</a></body></html> Good Luck!Oops, just change the <a> to your divs.
  9. Wait, I think I can use this. <html><head><style type='text/css'>p.scrollyes{width: 100;height: 50;overflow: scroll;}</style><</head><body><p class='scrollyes'>Hello<br>World<br>Hello<br>World</p></body></html>
  10. Sniffy

    Gabbly Chat

    Whoa, gabbly chat is cool.
  11. I just did a test and my PHP file displays in IE without having to 'download' the file, but the contents are blank.test.php <html><head></head><body><?phpecho "hello world";?></body></html> As I said, I haven't changed anything, so what's wrong?
  12. Nice site,I viewed it in IE and it was perfect.The quick-loading and neutral layout really goes will with what you're selling.Keep it up.
  13. I know this isn't helping you, but I was wondering what is the .htaccess file and what is it used for?Is it for apache server hook-ups or something?
  14. Okay, so I downloaded WAMP and conText(Which is soooo good by the way) so now I have everything I need to start running PHP scripts on my computer?I just picked all of the default settings in installation except my email, is there anything I need to change, or might need to change?I didn't touch any of the settings on the actually program itself either.
  15. What's EditPlus2?Is it free?I've never heard of it before....
  16. Sniffy

    quick question

    Yeah, there's just no default index page. Some hosts support it, while others return to their homepage.http://zendurl.com/Did that, whenever they're back up and running.
  17. XForms huh?The replacement sucessor in XHTML 2.0, interesting.I had a quick look at the tutorial.So it's new tags added by the W3C for more open form use?
  18. Okay, just wanting to know that he's even there.
  19. <html><head><script>function changeBBCODE(){if(document.getElementById("my_table").style.display == "none"){document.getElementById("BBCODEchanger").innerHTML = "Click to hide";document.getElementById("my_table").style.display = "inline";}else if(document.getElementById("my_table").style.display == "inline"){document.getElementById("BBCODEchanger").innerHTML = "Click to show";document.getElementById("my_table").style.display = "none";}}</script></head><body><a href='java script: void(0)' id='BBCODEchanger' onclick='changeBBCODE()'></a></body></html> Just make display either display 'inline' or 'none' by default.I think this works.
  20. I don't see the admins online very much, do they check on and update the forum or have they left it entirely in the mod's hands?
  21. Okay, I guess you guys wouldn't be selected as mods without any reason.
  22. Sniffy

    UltiBB

    Yeah, the seekond project seems pretty dead, so maybe this isn't the place for collaborations, just support.
  23. You start this time.Wait, I'll do it.PHP: <%php$the_match = $_PoST['match'];$34regex = "#^[a-zA-Z0-9]+$";if(preg_match($34regex, $the_match)){echo "Match Valid";}else{echo "Invalid Match";}%> Following UP:XML + XSLTASP
  24. Are we making a new topic/thread?
  25. Sniffy

    UltiBB

    Sounds like a good idea, but we'd need to make a catch to it, a reason why it's better than any other forum software.
×
×
  • Create New...