• Launched maximumhandyman.com#

  • goonz39 Reply #1, 1 year, 1 month ago

    Reply
    Just launched a new site, http://maximumhandyman.com. Makes use of TVs, eForm and friendly URLs. The best part about working in MODX is the simplicity of templating from a front-end developers point of view!


  • p1agu3 Reply #2, 1 year, 1 month ago

    Reply
    This is awesome! Well done, I definitely got a very strong and positive first impression from the site. I especially like the implementation of navigation at the top and the bottom.


  • wdnz Reply #3, 1 year, 1 month ago

    Reply
    nice, clean, and love the use of semi-transparent png's for the menubar, footer and the image captions overlay.


  • goonz39 Reply #4, 1 year, 1 month ago

    Reply
    Thanks for the positive feedback! Their clients all love the site as well.


  • polrbear Reply #5, 1 year ago

    Reply
    Nice site! One quick note though - you might want to set a good dark backup background color on the dropdown menus. When I first clicked on one, the text was illegible while the background image was downloading.


  • goonz39 Reply #6, 1 year ago

    Reply
    Thanks for the tip. The problem is the background image is a transparent png, and there is the wood background behind that in another div. Do you know how I can set it up with a backup bg color, that won't show up once the background image is downloaded? If I put the color in the css background property, won't it show up behind the transparent png, and then block out the wood background behind it?


  • polrbear Reply #7, 1 year ago

    Reply
    Quote from: goonz at Apr 28, 2011, 11:29 AM
    Do you know how I can set it up with a backup bg color, that won't show up once the background image is downloaded? If I put the color in the css background property, won't it show up behind the transparent png, and then block out the wood background behind it?
    I would put the backup background color in the ul, not the li. i.e. around line 223 I would put something like this:

    .centeredmenu ul ul {
          background: brown url("../template/woodtexture.jpg") repeat;
    }
    


    "brown" would be replaced with a reasonably matching shade of your choice. Then the wood background would override this color once it downloads, and the shadow png would properly overlay the wood.


  • goonz39 Reply #8, 1 year ago

    Reply
    Good call. I didn't even think of that. Thanks!


  • goonz39 Reply #9, 1 year ago

    Reply
    I ended up looking at the site with images off and noticed another spot that needed a background fix, and took care of that too. Thanks again!


  • polrbear Reply #10, 1 year ago

    Reply
    Glad I could help