more trouble with not being able to find the relevant code, how would i make the menu stretch across the whole of the top of the page? theres an anoyng gap on the right? cheers.Hi again!
Due to the fact, that the stuff is javascript anyway, I'd suggest a quick and easy javascript solution. Replace the opening body tag in the main.htm with this:
<BODY onload="if(!n)document.getElementById('MainTable').style.width=document.body.clientWidth">
The bit 'if(!n)' is there to avoid errors in netscape4; Mozilla (and NS6+ etc.) would not show the gap, so they also could be excluded. This could be done by replacing 'if(!n)' with 'if(ie)', but the detection of Opera in that script is quite unprofessional, so I prefer to do it like I did.
Cheers - Pit
Due to the fact, that the stuff is javascript anyway, I'd suggest a quick and easy javascript solution. Replace the opening body tag in the main.htm with this:
<BODY onload="if(!n)document.getElementById('MainTable').style.width=document.body.clientWidth">
The bit 'if(!n)' is there to avoid errors in netscape4; Mozilla (and NS6+ etc.) would not show the gap, so they also could be excluded. This could be done by replacing 'if(!n)' with 'if(ie)', but the detection of Opera in that script is quite unprofessional, so I prefer to do it like I did.
Cheers - Pit