Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jwhite68
  • Content: Threads
  • Order by date
  1. jwhite68

    Help with formatting

    I have the following simple table, with 2 columns. Each column has a list in it. The problem is that the list in the first column is vertically centred in the list. I want both lists to start from the top of the columns. How do I achieve this? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01...
  2. jwhite68

    How to manage a css file conflict, with same element names

    Hi, I have a css file called simple.css that was originally designed to be used on the main index page only. Now, I find that I want to use it on another page, so that I can display one of the same 'elements' (a user form) on the new page. To make this process quicker, I added the simple.css...
  3. jwhite68

    How to center text links within an image

    Hi, Can anyone advise me how to achieve the centering of text links within an area of a gif image. The idea is that the top gif image will have one text link inside, centred between the end of the 'upload multiple listings' and the right end of the gif. The bottom gif image will have five...
  4. jwhite68

    Want underline on hyperlink in one place, with none in others

    Help! Before I kill the creator of css!! I have a simple web page, and all I want to do is ensure the hyperlink is underlined. A css file that I import, has an entry which sets the underline to none by default. I just want to ensure for one section of this web page, that the underline is on...
  5. jwhite68

    Threads versus instances, handling MSMQ

    I am building an application in C# that will manage many thousands of incomming messages. This will be managed with MSMQ - message queues. I would like to know whether its better to create a new instance of the main process (component) for every message received or whether to have just one...
  6. jwhite68

    select box overlap in IE6

    I have a "classic" problem which I have so far been unable to successfully implement a workaround in. I have a drop down menu, which when selected overlaps a drop down combo box- so you actually see the combo box 'ON TOP' of the menu drop down. But the menu is supposed to be on top of the...
  7. jwhite68

    How to display text dynamically on HTML depending on radio button

    I have a HTML form (combined with PHP script) which presents 3 radio buttons. When either of the first 2 radio buttons are selected, I want to display a piece of text on the form - eg. Amount : $100. If the user selects the third radio button, I dont want to display this text. How can I...
  8. jwhite68

    How to proportionally reduce image in IMG SRC

    I have the following code: echo '<A HREF="'.$domain.'register.php" ><IMG SRC="image/promo.gif" style="width:50%; height:50%;" border="1" ALT="Click here to register"></A>'; I was expecting it to reduce the image promo.gif proportionately by 50%. Instead it appears as a single horizontal...
  9. jwhite68

    0 margin issue on line of text

    I have a piece of HTML as follows: <div class="offer1"> <p class="marg15"> <strong>Summary</strong><br /><br />Decent car for sale<br /><br/>Model :<br /><br />Ford escort <br /><br /> <strong>Description</strong> <br /><br /> <P>Good looking car. </P> <P>This is a red car.</P> <UL> <LI>red...
  10. jwhite68

    IE crashes on website on mshtml.dll

    I have a situation where repeating certain actions on my website causes IE to crash. Despite reporting the problem to Microsoft and having a Microsoft research engineer investigate, they say its not an IE issue and has to be an issue with the code. Basically when I click a picture link, which...
  11. jwhite68

    Cannot centre text - help!

    I have a simple code segment, and I am trying to figure our why the text wont centre on its background. Its probably a css issue, but I cannot understand why its not working. The red text should be centred on the grey background - see - http://www.photofriction.com/test-centerproblem.htm...
  12. jwhite68

    Firefox and textarea - to wrap or not to wrap

    The more I test with Firefox, the more confidence I lose in this web browser. If I have a textarea (as many of you probably will in your forms), instead of neatly wrapping to the next line (even with no spaces), it scrolls to the right continuously - and I cannot find a fix for this. It just...
  13. jwhite68

    Wrapping problem in Firefox

    I have the following code which displays 6 photos - with a coloured background behind. This coloured background is controlled with a stylesheet. When displayed in Internet Explorer, the 6th photo wraps neatly to the second row, displayed underneath the first photo. But in Firefox, the 6th...
  14. jwhite68

    Wrapping text issue

    I have the following line of code which displays a drop down box, and a text string to the right of it: document.getElementById('formdiv2').innerHTML='<select name="code" id="code" style="width:270px"><?=$codes?></select> (DD/MM/YYYY)'; The problem is, in Firefox it displays the...
  15. jwhite68

    Drop down issue in Firefox (works fine in IE)

    I have a drop down box for country and district defined as: <div class="d841"><strong>&nbsp;&nbsp;02. Where is it located?</strong></div> <div class="t841" id="loc"> <table border="0" cellspacing="0" class="formcontent"> <tr> <td class="right1">Country</td> <td>...
  16. jwhite68

    Display issue in Firefox and Netscape Navigator

    The following code segment displays perfectly in Internet Explorer: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>test</TITLE> <!--[if IE]> <![endif]--> <!--[if lt IE 7]> <![endif]--> </HEAD> <BODY> <center> <table border="0" cellspacing="0"...
  17. jwhite68

    Javascript to validate numeric input, but allow tab,delete etc

    I have tried to create a piece of javascript that will only allow entry of numbers; BUT also allow the user to use the DELETE,TAB, arrow keys, BACKSPACE keys so they can amend the entered numbers, or move to a number with arrow key to amend, or tab to next field in the form. The following code...
  18. jwhite68

    Javascript not executing on window load

    When the window loads, it is supposed to execute a piece of Javascript, which highlights a button, and displays links below it. Here is the code segment for the window load. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <TITLE>homepage</TITLE> <link...
  19. jwhite68

    Prepage for displaying please wait message

    I have a main script which displays a preload 'Please wait..' message, before loading the rest of the page. The problem is that it also shows a drop down box during the preload - which it shouldnt do. The main script includes tempservices.php, which has the drop down box in it. main script...

Part and Inventory Search

Back
Top