Search results

  1. adamblan

    Problem with banner graphic in FF

    have you tried html, body { margin: 0px; padding: 0px; } ?
  2. adamblan

    coldfusion on IIS but moving to Apache

    Why not just leave IIS as is & set Apache to listen for port 81?
  3. adamblan

    Web Page Design Question

    KISS body { background:#000; //choose the hex of choice } div#yourDiv { background:#FFF; //choose the hex of choice width:800px; //or however wide margin: 0 auto; //centers div on screen }
  4. adamblan

    Tear this site apart Please!

    You've built a beautiful gallery :) Recommendations are to 1. drop the html splash page ( ! ) 2. use swfObject.js to provide an html version of the site if flash is unavailable.
  5. adamblan

    '>' character in CSS

    ... It can be used as a descendant selector when you're working with jQuery?
  6. adamblan

    can someone help me out? .js random image and lytebox

    It'd be best to manage the images in a database, calling the desired number of images and ORDER BY RAND() Really has nothing to do with javascript, unless you're calling the image script asynchronously for some reason.
  7. adamblan

    File Extension for JavaScript Document

    file extension is .js
  8. adamblan

    CSS/HTML Positioning!

    Create a wrap <div> and place the buttons & content box inside it.
  9. adamblan

    help needed: how to update php values?

    <? $value1 = $_POST['content1']; $value2 = $_POST['content2']; ?> See this link for more info
  10. adamblan

    Using Photoshop with Dreamweaver

    You could, but like Vanish said, that would be a bad idea...
  11. adamblan

    Username/password use

    At the very least you'll need a server side script like php or .net to validate the user, most likely referencing a MySQL database. check out this link for more info ->
  12. adamblan

    centring screen

    Google "liquid css layouts" - A List Apart has some good resources
  13. adamblan

    Canvas size

    It depends on the screen resolution you're optimizing the site for, - I use a lot of liquid layouts so I tend to go big in PS (1600x1200) then slice/name the images I'll be using to fit the site...
  14. adamblan

    Needing help in Graphic Design.

    Start w/ learning the client side first- html & javascript (not java) After you've got that down you can make your site more dynamic by pulling info from databases with php. Check out a list apart & 456 berea street for some tutorials- because you do need to know code to design websites.
  15. adamblan

    Slight Table Problem...

    Absolutely position the table with css?
  16. adamblan

    Membership script

    Joomla & Drupal come to mind...
  17. adamblan

    which type of photo is best for sharing mean to say .BMP/.JPG/GIF?

    Unless you're sharing hi-res print quality tif images, go with jpeg.
  18. adamblan

    loading a large movie

    What format is the slideshow?
  19. adamblan

    Coding Problem

    What's left to say, other than delete the objects you don't want... Learn html?
  20. adamblan

    Coding Problem

    Well, yes and no - While DW can be used to design sites using design mode, what you see usually isn't what you get. The best description I've come across is "janky ass code"... Get into the code view & delete these objects.
Top