Jump to content

dimitar

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Posts posted by dimitar

  1. ohdang888,

     

    Thank you for the compliment ^.^

     

    The gap is something I put there by design to ensure the footer doesn't come up to the middle part of the page when the actual page doesn't contain very much content (see the Videos page as an example of a page that would fall short). So inside the stylesheet, I set min-height on the actual whitespace in the middle (body texts).  If you have a suggestion on how I could do this another way, I am open to ideas.

     

    Thanks again :)

     

    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. 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.

     

  3. <?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);
    }
    ?>
    

×
×
  • 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.