Recent content by preetham

  1. P

    How to place a div over another div using css??

    If there are multiple divs in layout and the 'comments' div is somewhere in the middle then, applying float will make sure that the other div's beneath or over will not be effected with the position of the current div(as the requirement was to show the div over others with out effecting the...
  2. P

    How to place a div over another div using css??

    the border attribute passed is in correct. try this (added one more attribute to the css - float) div#comments { float:left; position: absolute; left: 10px; top: 700px; width: 700px; height: 100px; z-index: 1000; border: 1px solid #666666; }
  3. P

    Cookies help

    Your landing page would be the intro page i guess. If this is the case.. when the user visits the site for the first time set the cookie as follows... in the introduction page <?php if(isset($_COOKIE['cookie_name'])){ header('Location: http://www.example.com/mainpage.php'); } else{...
  4. P

    You must supply a valid activation ID.

    Recently I have requested for linking forum account to hosting account and I've received a confirmation mail. But, before i checked the confirmation link, I logged in to the hosting account and there I got a screen asking to input Account User name to link hosting account. There I entered my...
  5. P

    cPanel link not working, Cpanel page does not load

    I can view my domain but i'm not able to connect to cPanel. I'm getting "connection timeout" message whenever i try to connect to cPanel. when I connect through ftp I get the following error "can't establish connection --> ftp.windowshopping.x10hosting.com:21 @ Wed Mar 26 11:55:45 2008...
Top