Recent content by subsilver

  1. S

    CSS Prob

    I would do it like this: #body div#statusbox_failure { background:#FFFAF1 url(../images/icon_failure.png) no-repeat 5px; border:1px solid #D2A960; } Cheers!
  2. S

    Thank you for the credit. Cheers!

    Thank you for the credit. Cheers!
  3. S

    A Folder for only for private

    create text file .htaccess inside the directory you want to protect. Put following code inside the file: AuthName "My Secret Area" AuthType Basic <Limit GET POST> order deny,allow deny from all allow from IP_ADDRESS_1 allow from IP_ADDRESS_2 </Limit> Replace IP_ADDRESS_1, IP_ADDRESS_2 with...
  4. S

    How did this site (MS) do this?

    Yeah, JavaScript + CSS (changes element, I guess it's div, display property). Agree, SL is better than Flash, but Adobe has presented Flex, which also delivers content rich web pages. Frankly, I have seen only 1 web site done in Flex. It was good, but I guess it was pain in the ass to make it...
  5. S

    Programming your own forum

    Eventually, files holding posts, threads etc. will rise to few megs and even more so your application will use more server resources and there will be performance drop. Your forum will become sluggish. Yabb, one of the oldest forum software, is written in Perl and uses flat file and it is not a...
  6. S

    Can i redirect pages automatically?

    There is also one method which can be used if the website is hosted on apache webserver (x10hosting uses apache). Edit .htaccess file in your site root directory, and add following line: Redirect 301 /oldpage.html http://www.example.com/newpage.htmlCheers!
Top