Search results

  1. B

    Margins around images in IE problem

    I get some margins around images and divs in IE that I am unable to figure out. I tried about everything and have no idea where the source of my problem is. In IE6 the page below has a distinct margin of about 2-3px right below the banner. http://www.troutsalmonchar.com/ The page I am...
  2. B

    what am I doing wrong?

    The ones that have a drop down menu are a different class. Find this class in the css sheet and apply the same design to it.
  3. B

    Rounded Corner Box CSS problem

    Thank you Tothepoint! The function produced the desired result but I have trouble calling the function with my php file (the one producing the table) as an argument. I tried $MyTable = include("Tables/MyTable.php"); and then calling the function wrap_in_box($MyTable); What happens is, the...
  4. B

    Rounded Corner Box CSS problem

    I have a rounded corner box, using 4 corner images. In the box, I have a PHP generated table that draws records from a database. The problem is that my bottom two corners do not go on the bottom, but stay right below the upper corners (as if the box has no content) I tried to fix that by...
  5. B

    Another IE Problem

    Thanks Ripper! My problem was slightly different. I could not pass arguments in JavaScript to a PHP file. There were a few other people with the same weird problem and they all resolved it differently but none of their ways worked for me, until I came up with something myself: I no longer call...
  6. B

    Another IE Problem

    I called Microsoft to ask them about the problem. After collecting a bunch of information from me, they said my product (system) was not covered under warranty any more so they could only assist for a fee of $54. It did not help me any, explaining to them that I was not even thinking of using...
  7. B

    Another IE Problem

    I have been struggling with similar problems and to me it looks like either JavaScript in IE is disabled by default (and needs to be enabled), or this browser has an issue with JavaScript.:p
  8. B

    IE problems

    No, but my understanding is that the site should work regardless of what the users have in terms of browser versions and settings. It is relatively simple things I am trying to do. Today, just when I wanted to show a guy one of my pages, it did not work on his IE8. Maybe he had his...
  9. B

    IE problems

    I have a page that works fine in FireFox but is a disaster in IE. My main issue at this point is passing a parameter and getting the page to work. The JavaScript line that is misinterpreted in IE seems to be this one: self.location = location.pathname+'?cat=' + val; Here is the page...
  10. B

    Storing a parameter in JavaScript

    OK, I found a way around it....... Two more questions: 1. MENU WIDTH How can I fix the width of a combo box? Setting the width did not help. page: http://www.troutsalmonchar.com/ART_BC_LKS_Roche.php?cat=BC If you click on Ontario and then BC the width of the box changes according...
  11. B

    Storing a parameter in JavaScript

    How can a person store a value after a JavaScript has been executed, to pass it on to another function? I tried defining global variables outside the functions. I then assign them the desired value within a function. However, when I run the second function the value of the global variable is...
  12. B

    Storing a parameter and passing it to another page

    How can a person store a value after a JavaScript has been executed, to pass it on to another function? I tried defining global variables outside the functions. I then assign them the desired value within a function. However, when I run the second function the value of the global variable is...
  13. B

    JavaScript and PHP on dropdown menu and MySQL

    I found a solution myself, thanks.
  14. B

    JavaScript and PHP on dropdown menu and MySQL

    I picked up a couple of books - PHP and AJAX but am still struggling The question below is probably very basic. The code that I run produces an error and some of you may be able to see it right away. I have a JavaScript function LoadList(area) which has to pass the parameter (area) to a...
  15. B

    JavaScript and PHP on dropdown menu and MySQL

    My obvious problem is the lack of knowledge of PHP and JavaScript. I have this page: http://www.troutsalmonchar.com/ART_BC_LKS_Horseshoe.php The map is used to generate a filtering string for the drop down menu below it ("SF", "CE", "EE", "SC", "UK"..) The drop down is created in PHP...
  16. B

    Headers and Drop Down Menus

    With my limited knowledge, I only make a big mess of things. I have a function called LoadList(str) The function is supposed to filter the values of a list box named "Rivers" Basically all I want to do is execute the SQL= "SELECT * table WHERE field1='" & str & ''" (in VB language) where...
  17. B

    Headers and Drop Down Menus

    Thanks, PixelPusher, I almost found a solution to my problems a few hours after I made the post, but I am not sure if the solution is good. My drop down is generated in PHP. I would much rather have it built in HTML and only use PHP to load data from MySQL into it. What I am doing on this...
  18. B

    Functions linked to Image Maps

    Thank you! :)
  19. B

    Functions linked to Image Maps

    I still have not found a solution. The idea is to execute some code based on the selected area on the map and then load the drop down menu with rivers for that area. Here is a sample page I am working on (although it has the wrong map on it)...
  20. B

    Functions linked to Image Maps

    I am not sure if this can be achieved, but I want to link the hot spots on my image map to functions that get executed instead of the usual "href=Page.html". Is this possible?
Top