Jump to content

pulpfiction

Members
  • Posts

    1,210
  • Joined

  • Last visited

Posts posted by pulpfiction

  1. The path in url() is relative to where the CSS file is, and does not matter which page you include the stylesheet to...... as long as you give the correct path of the stylesheet in the page, images should not be a problem.. is that what you are asking??

  2. Something like this....

    <table border=1 width="300px;"><tr><!-- This is 1 --><td style="height:50px;"> </td>  <!-- This is 4 --><td rowspan="3"> </td></tr><tr><!-- This is 2 --><td style="height:50px;"> </td></tr><!-- This is 3 --><tr><td><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /></td></tr></table>

  3. If you are looking for some interactive page load effect, this is simple....

    <script type="text/javascript">var size=10;var Interval = 200;var i=1;function Msg_Wait(){obj = document.getElementById('div_wait')if (obj){if (i>size){// reseti=1;obj.innerHTML = "";}obj.innerHTML += "<font face=arial color=red size=3>[]</font>";i++;setTimeout(Msg_Wait, Interval);}return;}</script>

    HTML

    <body onload="java script:Msg_Wait();">	<div id="div_wait"></div></body>

  4. Ah, warned you about that, it aint white. its got a light gray stripes...... not sure how it will be in your page, but save the image and use it as background and see if it suits.....

  5. Actually, sorry about that :). If you check out the site you will see I have made a bunch of changes :). I think it looks a lot better than it did before right now. So check it out again? I got the menu and such working to.
    Try this background.... [its a small image, hope you will be able to see it...]post-1407-1173388027.gif
  6. Tried this code, seems to be working fine in IE 6

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>Test</title><script type="text/javascript">function FP_setTextFieldText(id,txt,form) {//v1.0var el=FP_getObjectByID(id); if(el!=null) el.value=txt;}function FP_getObjectByID(id,o) {//v1.0var c,el,els,f,m,n; if(!o)o=document;if(o.getElementById)el=o.getElementById(id);else if(o.layers)c=o.layers;else if(o.all)el=o.all[id];if(el)return el;if(o.id==id || o.name==id)return o;if(o.childNodes)c=o.childNodes;if(c)for(n=0; n<c.length; n++) {el=FP_getObjectByID(id,c[n]);if(el)return el;}f=o.forms;if(f)for(n=0; n<f.length; n++) {els=f[n].elements;for(m=0; m<els.length; m++){el=FP_getObjectByID(id,els[n]);if(el) return el;}}return null;}</script><style></style></head><body>	<table style="width: 600px">	<tr>		<td style="width: 199px" class="style10" onclick="FP_setTextFieldText(/*id*/'TextArea1', 'text for about our parts', /*id*/'0')">About our parts:</td>		<td style="width: 199px" class="style10" onclick="FP_setTextFieldText(/*id*/'TextArea1', 'text for payment', /*id*/'0')">		Payment</td>		<td style="width: 200px" class="style10" onclick="FP_setTextFieldText(/*id*/'TextArea1', 'text for shipping\r\n', /*id*/'0')">		Shipping</td>		<td style="width: 200px" class="style10" onclick="FP_setTextFieldText(/*id*/'TextArea1', 'text or contact\r\n', /*id*/'0')">		Contact</td>	</tr></table><form method="post">	<textarea id="TextArea1" style="width: 600px; height: 250px"></textarea></form></body></html>

  7. Pulpfiction: Im guessing you just looked at it and posted a comment, I've been asking about that :). I cant figure it out!
    Sorry about that, did not have patience to read all posts, anyways did you try setting "margin:0;" seems to be working fine in IE 6 by including that... #vertinav ul { list-style: none; display:inline; margin:0px; }
  8. Using a stored procedure, create a temporary table and get all the data from Invoices [auto-increment in temp table] and then update invoice table ID and the other 2 tables....

  9. WOW! Thank you :). I will add it as soon as I get the time. I would add it now but my jump drive that has my ftp program on it doesnt work on this computer :). Thank you so much! Looks awesome. :)
    Did you check in IE 6, left navigation seems to be slightly out of place......
  10. Try this.... [it checks for option value=y and sets it as selected]

    <script type="text/javascript">function test() {  var i;  eval("var temp=document.getElementById('dropdownboxname[]');");  alert(temp.length);  for (i=0;i<temp.length;i++) {if (temp[i].value=="y") {temp[i].selected=true;} }}</script></head><body onload="test();"><form name="formname"><select id="dropdownboxname[]" class="inputbox">	<option value=""> </option>	<option value="x" id="228">?????</option>	<option value="y" id="228">??-??????</option>	<option value="z" id="228">?????</option></select>

×
×
  • Create New...