Jump to content

dimitar

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Everything posted by dimitar

  1. Looks good, but you should play a little more with margins, paddings and height. This is my suggestion: to class body_resize instead of "min-height:1200px" use: min-height:500px; height:auto !important; height:500px; to body add: background-color: #1A1A1A Check it out.
  2. I see you were discussing Notepad++. It's good if the project is a single php file, but if it contains a hundred files, classes, modules, objects, then I would rather use NetBeans, I love it's intellisense, search, svn, and much more. So, I'll go for NetBeans Best Regards.
  3. It will work in Google Chrome too.
  4. Bad navigation, not very good colours, width is 1330px which shouldn't be more than ~1000px if it's fixed, overall it looks very bad and I would never buy something if I was a potential client on your webiste. If the website is not understandable for me as a web developer, then be sure clients wouldn't be very happy. That's just my real opinion. About colors, check out http://kuler.adobe.com/ - it's a good start. Good luck.
  5. <?php if ($handle = opendir('pdf')) { $thelist = ''; while (false !== ($file = readdir($handle))) { if ($file != "." && $file != ".." && preg_match("/\bars/i", $file)) { $thelist .= '<a href="pdf/'.$file.'">'.$file.'</a> <br> <br>'; } } closedir($handle); } ?>
  6. Can't really say much from your code, but if you really need to use z-index then you are missing a defined position for the element.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.