Jump to content

fabrydesign

Members
  • Posts

    77
  • Joined

  • Last visited

    Never

Everything posted by fabrydesign

  1. Looks a ton better than the old one. My biggest problem with it right now is that you're using at least six different shades of blue. Try consolidating them- the links on the navigation bar and the large text titles should be the color of the blue bar (where about and contact are). Also, having the blue links light up yellow on white just doesn't look good. Try a blue background on rollover with white text. The header image could use some kind of border, everything else is bordered but that image just runs into the page background. The Latest Additions and Notice Board are kind of weird with rounded corners since everything else is square. I'd say make them square too. Division boxes at the bottom have really tiny text, they should probably be larger. Overall, well made (again, way better than before). Just needs to be cleaned up a bit.
  2. - It's centered.... yet not - The colors are iffy, especially on the navigation bar, readability is low - Navigation is awkward with the bright, high contrast horizontal bar and then having to use the low contrast, drab out-of-the-way sidebar - Main content area (white) is thin and the padding between the text and the sides is too small -Overall, stuff seems oddly placed and spaced
  3. Looks nice, good color palette. However, I don't like the logo font very much, seems out of place with the simple, clean lines of the rest of the site.
  4. For the first site (http://www.andrewodendaal.com/), it all seems pretty dull. Grey on grey with the high contrast blue used for everything except stuff that needs to be contrasting (use grey for the dividers, and blue for the titles, not the other way around). Also, coming to the home page and all that is there is a form to request a quote seems like you're jumping the gun- as if your site is there solely for people to request a quote. Put some interesting stuff to draw people in on the front page, that would make them want to click somewhere else to get a quote, if they are impressed with what they see. "This site is the online portfolio of work for Andrew Odendaal" isn't a really strong introduction. Also, the only thing the sidebar is used for is a search box. Would be worthwhile to put some content in there, or find a different place for the searchbar instead of having a ton of whitespace. Conclusion: the colors aren't great and are chosen for their elements badly, and there's too much text and nothing that says to me "this guy knows what he is doing and looks good".
  5. Is it possible to allow a background image to be visible outside the bounds of the element it is the background of? If not, is there a clean solution to achieve the same effect? Thanks, FD
  6. I've been learning CakePHP and it's very well documented and has a pretty active IRC channel that's generally helpful.
  7. Terabytes and terabytes and a few more terabytes...
  8. You might want to add a character limit to the submitted message.
  9. Don't like the Times New Roman on the splash either. Looks good, except the layout is broken for me (Chrome on 1280x1024), the main content is offset to the right of the nav and footer.
  10. http://book.cakephp.org/ Is documentation. That's a PDF I really have no interest in reading.
  11. min-width:800px; Ta-da!
  12. Looks nice, clean and simple with a nice color scheme. The only thing that I get hung up on is why the navigation is above the box with the logo, when it looks like you could nicely fit it inside and save that bit of space while making it flow better.
  13. I think we're all going to be saying this until someone does something brilliant and puts us all in awe and suddenly we'll see everyone using it in a ripped-off kind of fashion...
  14. Seems like those big images on the home page should be links. There's a huge thing that says REGISTER but I have to search for a little bitty link off to the side.
  15. I've noticed it is very hard to get back to the home page.
  16. After you validate their information in your login script, add setcookie('username',$username,time()+60*60*24*30); // $username being their username and then on your form, add: <input name="login" value="<?php if(isset($_COOKIE['username')){ echo $_COOKIE['username']; } ?>" />
  17. Ah, but just you wait..as it is Ford has integrated MS via Sync (or something like that).. Just wait till they implement that MS swerve action! (something tells me the morgue / funeral parlor businesses will be booming!) I can just see dashboard LED screen flash blue-screen-of-death as the driver violently steers the wheel... Trojan got into the power steering.
  18. Thanks for posting this. I'm now aware my parents coffee shop is showing horrible reviews for a different shop on our listing. Now I have to get in touch with the G Giant. =/
  19. Thanks. I can't believe I made such a silly mistake. Guess I just needed a fresh set of eyes to spot that.
  20. http://thwhap.fabrydesign.com/ I have the center box refreshing with a random database entry. When someone enters something into the form, I'd like it to select a random database entry LIKE whatever is entered. What I have right now only seems to work in Chrome. <script src="http://code.jquery.com/jquery-latest.js"></script> <script> var onLoad = $(document).ready(function(){ $('#randomdate').load('date.php'); var refreshId = setInterval(function(){ $('#randomdate').fadeOut("slow",function(){$(this).load('date.php?q=' + $('input#search').val(),function(){$(this).fadeIn("slow")})}); }, 7500); }); </script> <?php if(strlen($_GET['q']) > 1 && $_GET['q'] != 'undefined'){ $q = $_GET['q']; $query = "SELECT * FROM thwhap_dates WHERE title LIKE '%" . $q . "%' ORDER BY Rand()"; $result = mysql_query($query); if(mysql_num_rows($result) > 0){ $row = mysql_fetch_array($result); echo '<h2>' . $row['year'] . ' ' . $row['era'] . '</h2>'; echo $row['title']; } else { echo 'Nothing found for ' . $q . '.'; } } else { $query = "SELECT * FROM thwhap_dates ORDER BY Rand()"; $result = mysql_query($query); $row = mysql_fetch_array($result); echo '<h2>' . $row['year'] . ' ' . $row['era'] . '</h2>'; echo $row['title']; } ?>
  21. I just started using CakePHP, and it is my first experience using a framework, and I love it. It is very well documented, and they have a very active and helpful IRC channel.
  22. http://fabrydesign.com Have no clue why, but when trying to view it in Internet Explorer, it gets an "operation aborted" error and stops loading the site.
  23. I love the strong typography and the blue color, but I'm not too keen on the dark background and the logo. The footer text is the most high contrast [bright] thing on the page, but it is the least important. Make it a mid/dark gray. Looks nice though.
  24. Definitely something I want to work on, but when I look at it, websites have little standardization in format, so adding in new rules for detecting things will probably break functionality for more sites than it helps. That's what I'm aiming for. The standard author tag is utilized, the cite-author tag overrides it. Thanks for the feedback guys.
×
×
  • 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.