Search results

  1. conor

    Interactive Palace Website Review

    No i meant shocking in a good way, as in if you saw it you would remember it! Yeah the max feature is nice I didn't notice it initially. I have no further complaints!
  2. conor

    Nav bars - tables vs lists

    If you do this it gets rid of a div: <ul id="navbar"><!-- list in here --></ul> This also tidies up your CSS: ul#navbar{ background:#000; height:50px; width:100%; white-space:nowrap; list-style-type:none; } ul#navbar li { display:inline; width:140px; } That code seems valid (unless...
  3. conor

    Interactive Palace Website Review

    Wow... what can I say! It's shocking! I like the conecpt but i would personally prefer if the actual content area was bigger and a bigger font size... I would also think about changing the background image. Sure it's cool and all but is it really appropriate for a professional business?
  4. conor

    Copying source does not yield same results: Help required

    you could copy the CSS file aswell then you would have style
  5. conor

    Compress PNGs

    Just in case you dont already know about it if you are using photoshop you can hit ctrl. Shift. Alt and s which will open up the save for web box with which you can reduce the size while retaining the quality.
  6. conor

    Compress PNGs

    What dimensions are in the PNG? It really shouldn't be that big! My banner photographs are usually a max of 50kb. BTW. PNG transparency is not supported in IE6 and the PNG just shows up as a big grey box.
  7. conor

    Easily updated web page text area via .txt file mod

    Your taking the wrong approach with this problem. What you need is a Content Management System.
  8. conor

    remove verification email from PHP Register and Login Form

    Yeah that's tricky... Are you stating where the email is from? Often if you say that the email is from [email protected] but you are sending it from a domain called name.com then it will be marked as spam. Are there a lot of links in the email? Is it a shared server? Is the server blacklisted...
  9. conor

    Forum Skin Review

    yeah that's better. I would just bump the font size up to 12px aswell. 800px is a very safe resolution because some people still use a 800x600px size for some reason! It looks like a good forum but forums in general are very hard to start because people generally don't go to a forum that they...
  10. conor

    Forum Skin Review

    I think it's a nice design already. A few things that I would recommend are increasing the with of the content area by maybe 200px and also increasing the font size - I can hardly read it! Other than that it is good, but making a forum a success is not an easy thing and most of them don't make...
  11. conor

    Setting a div to 100% screen height

    I don't recommend using HTML such as align="center", what's the point when you can have all your style in one place instead of working between two documents?
  12. conor

    Setting a div to 100% screen height

    Why do you have the body set to position:absolute; ? That seems unnecessary. Also the body doesn't need a background color if it's just white! :L And why is the body width set to 100% that should be unnecessary as it is set as so by default. As for the other problem could you post a link or the...
  13. conor

    First Serious Website Critique

    very nice.
  14. conor

    Submit and download form

    Well it depends on what type of file it is. Normally, assuming your using PHP, this code will work: <?php header('location: path/to/file'); ?> If the file just opens inside the browser you will need to force it to download with PHP. Let me know if that happens.
  15. conor

    remove verification email from PHP Register and Login Form

    Where is the email being sent from? Is it a personal server? Or is it your computer? I encountered similar problems when sending from my mail server before.
  16. conor

    Does this look like a chid did it?

    That URL isn't working.
  17. conor

    Text vs images

    Meta tags only work if their content is present somewhere in the content of the website so yes it does matter. But you can get around this by using the alt and title tags as described above. But why use images if you can use text. I only use images for stuff like the website title. All my links...
  18. conor

    Database

    Ok there's a lot involved in what you are asking for. I would suggest using PHP to do so. First, have you set up a databade and do you have all the connection details, hostname, user, pass, dbname? * don't post them here! Oh and what database are you using? MySQL? If you have done that then...
  19. conor

    Open external link in new window

    I don't have a clue what's going on with that JavaScript sorry I can't help
  20. conor

    Forms - labels inside fields

    code code code? :-)
Top