Ver Mensaje Individual
  #2 (permalink)  
Antiguo 31/01/2011, 14:19
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 1 mes
Puntos: 1146
Respuesta: HTML puro en dreamweaver mx se puede? (NO XHTML)

para facebook inserta una llamada a tu hoja de estilos que alojaras en tu hosting y al final del link agrega el parámetro ?v=, esto con la finalidad de que cada que hagas un cambio a tu hoja de estilos al código de facebook solo cambies el valor de v= ya que el sistema guarda el cache y si actualizas tu hoja de estilos el sistema no lo reconoce a menos que cambies el link del css.... por ejemplo yo lo uso

Código HTML:
Ver original
  1. <link type="text/css" rel="stylesheet" href="http://misitio.com/EstilosFaceBook.css?v=1.01"/>
  2.  
  3. <div class="SitioFacebook">
  4. <h1>bla bla bla</h1>
  5. <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.</p>
  6. <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
  7. <h2>bla bla bla</h2>
  8. <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s,</p>
  9. </div>

Pd: también puedes incluir el css en linea


Código HTML:
Ver original
  1. <style type="text/css">
  2. <!--
  3. .Estilo1 {font-size: 36px}
  4. -->

pero IE no lo reconocerá

mas información y tips en este sitio (en ingles)
http://www.hyperarts.com/blog/static...rnet-explorer/

Última edición por ArturoGallegos; 31/01/2011 a las 14:24