got it...
<div height="24" style="position:relative; top: 0; left: 0;"><img style="position:absolute; top:0; left:0;" hspace="0" align="left" width="18" height="24" src="img1.gif">
<img...
Type: Posts; User: rizlaa; Keyword(s):
got it...
<div height="24" style="position:relative; top: 0; left: 0;"><img style="position:absolute; top:0; left:0;" hspace="0" align="left" width="18" height="24" src="img1.gif">
<img...
is there anyway of getting one image to sit on top of the other without having to artificially increase the size of the bottom image??
i need both images to be the same size. In my webpage they...
have tried putting z-index: -1 into the divs and the images but this still does not work.
can anyone provide the bit of code that will get this to work???
I have tried using the following bit of code:
<td>
<div height="24" style="position:relative; top: 0; left: 0;"><img hspace="0" align="left" width="18" height="24" src="img1.gif">
<div...
Hi,
I'm trying to place an image on top of an image and was wondering how you would do this using html?
Thanks,
Riz
I am using the folowing link
http://www.dynamicdrive.com/forums/archive/index.php/t-11419.html
to disable the backspace button from going back one page in the history when focus is on a...
which css item are you refering too??
(i believe the z-index of the select lists in IE are infinite??)
is there anyway of using the iframe hack on this example???
Hi does anyone know how to create a horizontally scrolling table with the first couple of columns locked as in excel pane freeze??
I have followed the example from:...
I have a table with a several rows. I am trying to put a horizontal rule (HR) acroos the middle of the row 100% width and then place a transparent image over the top of it.
I have the following...
sorry,
you are right.....
i meant i want it to break vertically as the chart is horizontally exceding the page size
so as you state i need a method of breaking a html (no images) chart that...
that will only page break vertically and not horizontally
ie my chart is too wide to print i need to break it into page sized chunks.
Hi,
I haveweb page which contains a gantt chart that scrolls horitontally over multiple pages. when i print the page only the first page is printed.
Is there anyway of placing horizontal page...
I have a webpage which i wish to allow users to download as a word document (the web page layout/styles are stored in a css file)
is there any quick way of converting the html into a word doc...
the following works!!
var links=document.getElementsByTagName('A');
calExp = new RegExp("genCal_"+calRow);
srcExp = new RegExp("cal.gif");
for (var i=0;i<links.length;i++) {
if...
The wizard generates <DIV> tag in front of the <A> tag along with a bit of other code. It does this to be able to cater for various scenarios.
I am not able to change the way the code is...
have tried the following:
var links=document.getElementsByTagName('A');
calExp = new RegExp("genCal_"+calRow);
srcExp = new RegExp("cal.gif");
for (var i=0;i<links.length;i++) {
if...
i have a tabular form with several of the following:
<A HREF="javascript:genCal_X()">< img src="cal.gif" border="0" /></DIV></A>
where the _X refers the to the row. I am able to retrieve and...
please ignore
I have a region of my webpage which i am refreshing using AJAX functions.
the region contains a table of rows and a javascript function which changes the background colour of the row when hovering...
got it to work....
I was trying to fire the event on a hidden item (which doesn't work) have changed it to a visible item and it now works.
Thanks for the help...
IE
throws up the following error:
object doesn't support this property or method
I have an item whose value is set by javascript code.
I want to place an onChange event handler on this item, only problem is that the onChange event handler will not fire if the items value is...
TWEY,
thanks for that the following worked:
document.forms.form1.elements["f0" + colNum][(rowNum - 1)].value = 'U';
I have typed in your alert as specified and the alert box that popsup shows the output as you have stated. "2 5 f02[4]".
have tried the following with the same error being displayed:...
I have tried your double brackets method
document.forms.form1.elements['f0' + colNum + '[rowNum - 1]'].value = 'U';
and also tried
document.forms.form1.elements['f0' + colNum + '[' + (rowNum -...