Ver Mensaje Individual
  #3 (permalink)  
Antiguo 16/03/2011, 08:29
agirrearri
 
Fecha de Ingreso: enero-2011
Mensajes: 88
Antigüedad: 13 años, 2 meses
Puntos: 1
Respuesta: ¿Que hace que este código no se vea bien en Chrome y IE, en cambio bien en

Gracias por la respuesta, me he dado cuenta que ese código yo tambien lo veo igual. Pero claro porque no se ejecutan las funciones ScrollForm() al hacer el scroll y LoadForm(); al cargar body.

Estas dos funciones hacen que la linea de botones desaparezca. Pero todabía no se como solucionarlo. el archvo que implementa esas dos funciones service.js y su contenido que genera el conflicto es el siguiente.

Código:
function LoadForm()
{
    
	baseTop = document.body.clientHeight;
    SetActivePages();
	var dokumentua =document.all["span_line_button"];
    if( dokumentua ){ 
	LineButton = document.all["span_line_button"].style.pixelHeight;
	var geldi = true;
	}
	
    if(!NullOrMissing(document.all["DIV_HEADER_COLOR"])) HeaderColorHeight = document.all["DIV_HEADER_COLOR"].style.pixelHeight;
    if(!NullOrMissing(document.all["DIV_FOOTER_COLOR"])) FooterColorHeight = document.all["DIV_FOOTER_COLOR"].style.pixelHeight;

    Line();
    Footer();
    Body();
    CenterZoomBG();
	AjaxLoad();
}

function ScrollForm()
{
    baseTop = document.body.clientHeight + document.body.scrollTop;

    Line();

    HeaderTop();

    Footer();

    Body();

    var obj = document.all["DIV_BG_IMAGE"];
    if( !obj  ) return;
    obj.style.pixelHeight = document.body.clientHeight-LineButton;
    obj.style.pixelTop = document.body.scrollTop;
}

function Line()
{
    var obj = document.all["span_line_button"];
    if( obj ) {
		obj.style.pixelTop = baseTop-LineButton;
		}
}
Gracias por la ayuda, atentamente Eñaut.