Search results

  1. jnjc

    IE adds linebreak?

    I am not sure why IE renders the page differently, but there is a .css trick that can help resolve the issue. Basically if you start a style tag with an * then firefox ignores it, but IE doesn't. This allows you to easily tweak the .css for IE. If you want margin 10px in Firefox but 20px in...
  2. jnjc

    create an email - I need your help

    What language/database are you using ? If you are looking to supply your users with webmail why not use one of the many opensource systems out there ? A few examples are: http://www.horde.org/ http://www.squirrelmail.org/ Save yourself the trouble of re-inventing the wheel...
  3. jnjc

    Report Spam Thread

    Is there anyone actually doing anything about theses http://www.webdesignforum.com/showpost.php?p=16610&postcount=2
  4. jnjc

    Experienced Writer

    One thing I have noticed from your site is that there is no straight "Contact Us" link. I found the "Order Site", but what if someone just wants to send you a query or request for more info ?
  5. jnjc

    Report Spam Thread

    http://www.webdesignforum.com/showpost.php?p=16576&postcount=3
  6. jnjc

    Ecommerce Websites.

    Look at zencart. http://www.zen-cart.com http://www.zen-cart.com/index.php?main_page=showcase These are a couple of sites that use it, I've pulled them from the examples page: http://www.seemore-s3.com/ http://www.adornedsoul.com/ It's open source, very flexible and completely...
  7. jnjc

    Site feedback?

    I think you need to simplify the top menu by removing or sorting some of the options. Another thing you could do is have a Drop Down Menu Called Job types with each job type under it. I have put a link to an example below. If you don't like the Drop down menu have a separate page called...
  8. jnjc

    Site feedback?

    I find the menu of options up the top of the screen a little off putting, because there are so many options in it. Maybe you should group all the various types of jobs together on a separate page and just have one option on the top menu called "Job Types"
  9. jnjc

    Trouble With Flash Site

    I assume you are trying to run the old site from you hard drive. It will depend a bit on how the flash was put together but best case scenario it should just be a matter of copy the .swf files (and any other related files) to a directory on your hard disk, maintaining the original directory...
  10. jnjc

    Redirection

    I reckon you'd be better posting this sort of question here: http://secondlife.com/support/
  11. jnjc

    Report Spam Thread

    Spam http://www.webdesignforum.com/showpost.php?p=16544&postcount=2 http://www.webdesignforum.com/showpost.php?p=16521&postcount=6 These message appears on a number of threads
  12. jnjc

    Fill In Business Card Templates for Web Sites

    Have you googled for it ? Other than that have a look at: http://blog.davglass.com/files/yui/dd31/ It might be a useful place to start....
  13. jnjc

    Stupid IE

    The easiest way to solve this is to add text-align:center; to your body style: body { margin: 0px; background: url(images/background.jpg) repeat-x top left; width: 100%; text-align: center; } But you might need to check to see if there is a knock effect somewhere else...
  14. jnjc

    Popup Flash Picture

    It's not flash it's javascript. I had a quick look at the page source and it's using this code: http://www.dynamicdrive.com/dynamicindex4/lightbox2/index.htm It looks to be open source and the link above has the instructions etc. HTH, JC
  15. jnjc

    Automatically List Directory Contents

    You'll need to supply more info. what are you using to buld the site ? You'll need some sort of server-side scripting to get a directory listing (php is usually the most common).
  16. jnjc

    Popup Flash Picture

    The above link looks to be dead ?
  17. jnjc

    how to crerate a link or button to close window?

    Not sure if this method is over-kill but this is how I do it: <script language="JavaScript" type="text/javascript"> function CloseMainWindow() { window.parent.parent.opener = top; window.parent.parent.close(); window.parent.opener = top; window.parent.close(); window.opener = top...
Top