Search results

  1. jnjc

    pop up windows

    Check out this link http://www.huddletogether.com/projects/lightbox2
  2. jnjc

    Lightbox2 conflict with rollover images - HELP?

    Looks fine to me. When you say "rollover image" on nav bar what do you mean ?
  3. jnjc

    Storing Credit Card Details Securely

    I think you need to do some more research as far as I know there are also physical requirements when storing credit card details ie. The server needs to be in a secure location, with restricted access etc., etc. You may also need to look at backup strategies because if one of you backups goes...
  4. jnjc

    firefox centering css problem

    I still am not sure what the issue is, the only issue I can see is the title on each page doesn't seem aligned correctly the content seems fine. When you say What do you mean by css ? Can you post an image showing what the problem is...
  5. jnjc

    Need a bit of help

    It seems to be done using divs , the first div has the image of the planets on it and it's position is somehow fixed on the page. The second div overlays it with a relative postion and it's background is a gif with transparency in the middle. When you scroll the first div stays stationary...
  6. jnjc

    How to force pop up to open centered?

    To be honest it probably won't slow you page down to any great extent (as in you probably won't notice it). You main problem is that as things stand you won't be able to control the size of the window. What you need to do is make the following changes to your JS and your html: <script...
  7. jnjc

    Joomla based custom church web designs

    This post breaks the first rule of the forum. http://www.webdesignforum.com/showthread.php?t=4566 Forum Rules -------------------------------------------------------------------------------- 1. You must have 10 posts to post in the Offers/Requests section, and posts in that section are limited...
  8. jnjc

    How to force pop up to open centered?

    Your problem here is because the popup function is defined multiply times within your page, if you view your page source you'll see what I mean. Think of functions like variables if you define it multiply times it'll have the value of the last time the browser reads it. The following example...
  9. jnjc

    Help with image rollover thingy

    This is a horizontal accordion widget (with rollover) check out this link, hoover over the images in red to see it work: http://designreviver.com/tutorials/jquery-examples-horizontal-accordion HTH, JC
  10. jnjc

    How to force pop up to open centered?

    I have tested the code and it works for me. I've tried the width at a number of settings and it seems fine. Can you post a URL ? One thing to watch for with popup windows, make sure you close the window after you use it. If you have a popup window hanging around in background the browser...
  11. jnjc

    How to force pop up to open centered?

    I should have tested it before I posted it, try this and let me know how it goes: function showDialog(URL, width, height) { var w = screen.availWidth; var h = screen.availHeight; var leftPos = (w-width)/2, topPos = (h-height)/2; id =...
  12. jnjc

    To Flash or not to Flash?

    The first question you should ask is why he wants flash ? Flash is a tool and as with everything it's a matter of the right tool for the right job. Find out what his requirements are and then decided what you need to build it. For my money you should not use flash unless you have to. I...
  13. jnjc

    How to force pop up to open centered?

    change the function "showDialog" to the following (again I haven't tested this but it should work or at least get you started): showDialog(URL, width, height) { var w = 800, h = 600; if (document.all || document.layers) { w = screen.availWidth; h = screen.availHeight; }...
  14. jnjc

    firefox centering css problem

    Have you resolved this ? It looks alright when I view it in FF.
  15. jnjc

    How to force pop up to open centered?

    You will have to write a small piece of JS to calculate the center position of the window and then pass those parameters to the open command. I did a quick search on it and came up with the following from http://www.irt.org/script/1316.htm var w = 480, h = 340; if (document.all ||...
  16. jnjc

    Fixing IE problem on site

    Try setting the width in twoColLiqLtHdr.css in the style : .twoColLiqLtHdr #mainContent to width: 799px; HTH, JC
  17. jnjc

    div pixel shift "problem" in Firefox, Opera

    This problem seems to be cause by padding on the ul element. Add the following to ul.navlist in your style.css: padding:0; This will solve the issue on FF, I haven't tested it in IE but I'm guessing it'll be ok. HTH, JC
  18. jnjc

    Problems with IE

    I've had a look at this and there doesn't seem to be a quick fix. It looks to me like your div layout is fatally flawed. For example the background image for you left column (held in "roundcont" class) seems to be assigned to a div that contains most of the page content. If I were you I'd redo...
  19. jnjc

    Learning Dreamweaver

    Can you post the page ?
  20. jnjc

    text messages...?

    Have you tried contacting your Telecommunications provider ?
Top