Jump to content

aspnetguy

Members
  • Posts

    6,787
  • Joined

  • Last visited

Everything posted by aspnetguy

  1. by making .container have absolute positioning it becomes a different "layer" so the other divs "fall out".Remove the absolute positioning (position and left attributes) and see if that helps.If it doesn't post both your HTML and CSS and I'll reproduce your situation and fix it for you.
  2. if it was custom built be dhost then the answer is no...they are running IPB 1.3.1. Modules for 1.3.x are not compatible with 2.x
  3. are you trying to run ASP or ASP.Net? They are 2 very differnt things.When you are in IIS manager expand the treeview until you see a node that says Web Server Extensions or somethign similar.Click this node once. You should get, to the right, a list of extensions saying either allowed or prohibited.If you are running ASP.Net then that extension must be allowed if you are running Classic ASP then the extension named Active Server Pages must be allowed.
  4. do you know if it is a module for IPB or was it custom built by the other site?Also if it is a module is it free...if it is not free then there is your answer.
  5. does the inner div have to be floated?I know you have to play iwth the inner divs margins. I have seen it done before but can't remember how.Why are you floating hte inner div if it is the only element on that line?
  6. does it allow you to take away points if they are spamming or something dumb like that?
  7. Actually you were too late he just implemented my solution wrong...if you want to get technical
  8. aspnetguy

    Help a noob?

    same problem it the images folder is in the same folder as the page chane url(/images... to url(images...
  9. I did not write "a:img" I wrote "a img"
  10. You may not have IIS installed (it isn't by deafult) have you manually installed IIS? If not put in your windows cd and choose install windows components and check Internet Information Services, then install.If you already have IIS installed it should be under Control Panel> Administrative Tools>Internet Information Services.
  11. here is a similar situation, a bit more complex, where they define schema for an element that can have 2 definitions.http://www.stylusstudio.com/xmldev/200406/post20490.htmlhope this helps
  12. you can use either of these methods.1. place border="0" into the <img> tag.2. use this cssa img{border:0px}
  13. aspnetguy

    Help a noob?

    href="/fingstyle.css" is most likely the problem.is fingstyle.css in the same folder as the page? if so change it to this href="fingstyle.css"
  14. I really like istockphoto.com....very reasonable prices.
  15. aspnetguy

    Help a noob?

    open up the page in your browser (doesn't matter which one). Goto View>Source and then post what you see.Is your stylesheet external or within the <head> of the page? If it is external please post the entire stylesheet as well.This will give us a good start on locating the problem
  16. try thishttp://www.htmlcodetutorial.com/sounds/_BGSOUND.htmlyou will have to have the sound uploaded to where every the page is
  17. I am not sure if($e) is enough (not a php expert tho)if(sizeof($e) > 0) would work for sure tho
  18. you have windows XP professional?Be sure ASP is enabled in IIS
  19. aspnetguy

    captcha test

    OUCH! That has been an occasional issue for me with Notepad and Notepad2...I have trained myself tho...
  20. do this <html><body><script type="text/javascript">var d = new Date()var hours = d.getHours()var minutes = d.getMinutes()document.write('<form>')if (minutes<=9) document.write('<input type="text" name="time" value="' + hours + ':0' + minutes + '">')else document.write('<input type="text" name="time" value="' + hours + ':' + minutes + '">')document.write('</form>')</script></body></html>
  21. adding this to the <head> <style type="text/css"> html,body{height:100%} table{height:100%}</style>
  22. I aim to please...just happened to be in the right place at the right time
  23. you could do this <img src="url" style="float:left;maring:5px;" alt=""/> This would put a 5 pixel margin around the image
  24. sweet, I'll have to install flash tonight...it has been sitting on the shelf for over a year.
  25. thanks for testing it...I suspect it was apache as well...it worked fine on another server.I know that alot of the functions weren't working. I was still trying to figure out why I couldn't view it properly remotely. I am now on IIS6 so that takes car of the problem. I have a pre-made PHP4 script (went back to PHP4 from 5) and all is fine.Thanks for your help.
×
×
  • Create New...