Ver Mensaje Individual
  #12 (permalink)  
Antiguo 01/09/2010, 15:47
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 1 mes
Puntos: 101
Respuesta: Añadir enlace de css com PHP dentro del /head/

Cita:
if ($nav == "Internet Explorer 8" OR $nav == "Internet Explorer 7" OR $nav == "Internet Explorer 6")
Que también podría ser:

if ( strpos( $nav, "Explorer") !== false )

En síntesis:
Código PHP:
<?php if ( strpos$nav"Explorer") !== false ): ?>
<link href="estilo_ie.css" rel="stylesheet" type="text/css" />
<?php else: ?>
<link href="estilo.css" rel="stylesheet" type="text/css" />
<?php endif; ?>