Ver Mensaje Individual
  #6 (permalink)  
Antiguo 10/08/2012, 10:21
Jhon Silver
 
Fecha de Ingreso: marzo-2004
Ubicación: Madrid (España)
Mensajes: 837
Antigüedad: 20 años, 8 meses
Puntos: 9
Respuesta: bold en chrome

Estas dos clases dos distintas, por eso estan separadas y estan puestas en el css, la primera es general y la segunda hace la llamada a class "enlace"

a:link{color:#003333;}
a:{text-decoration:none}
a:hover { text-decoration:underline}
a:visited{color:#003333;}

a.enlace {
color: #003333;
font-weight: bold;
text-decoration: none;
}

Os pongo un ejemplo http://www.jmcweb.org/ejemplo/ pero aqui si que se ve bien:

Debe haber un conflicto en el css, os paso el código:
Código CSS:
Ver original
  1. body {
  2.     margin-top: 0px;
  3.     background: #FFFFFF;
  4. }
  5.  
  6. a:link{color:#003333;}
  7. a:{text-decoration:none}
  8. a:hover {  text-decoration:underline}
  9. a:visited{color:#003333;}
  10.  
  11. a.enlace {
  12.     color: #003333;
  13.     font-weight: bold;
  14.     text-decoration: none;
  15. }
  16.  
  17.  
  18.  
  19.  
  20. h1{
  21. font-family: Arial, Helvetica, sans-serif;
  22.     font-size: 95%;
  23.         border-bottom: 1px solid #666;
  24. }
  25.  
  26. h2{
  27. font-family: Arial, Helvetica, sans-serif;
  28.     font-size: 95%;
  29.         border-bottom: 1px solid #666;
  30. }
  31.  
  32. h3{
  33. font-family: Times New Roman, Times, serif;
  34.     font-size: 91%;
  35.     border-bottom: 1px solid #666;
  36. }
  37.  
  38. h4{
  39. font-family: Times New Roman, Times, serif;
  40.     font-size: 91%;
  41.     border-bottom: 1px solid #666;
  42. }
  43. h5 {
  44.  
  45.     border-bottom: 1px solid #666;
  46. }
  47. p.center {
  48. font-family: Arial, Helvetica, sans-serif;
  49. font-size: 80%;
  50. }
  51. p.izquierda {
  52. font-family: Times New Roman, Times, serif;
  53. font-size: 80%;
  54. }
  55. #buscador
  56.  
  57. { margin: 0.5cm; background: #EAEAEA; padding: 1em; border: 1px solid #222;}
  58.  
  59. table.letra {
  60. font-family: Arial, Helvetica, sans-serif;
  61. font-size: 68%;
  62. a:link{color:#000000;
  63. a:text-decoration:none;
  64. a:hover text-decoration:underline;
  65. a.:visited color:#000000;
  66. }
  67. p.resalta {
  68. font-family: Arial, Helvetica, sans-serif;
  69. font-weight: bold;
  70. font-size: 95%;
  71. }
  72. .tborde
  73. {
  74. border: 1px solid #222;
  75. }


Cita:
Iniciado por furoya Ver Mensaje
Otra gran excusa. Las voy juntando para cuando escriba "Mis memorias en FDW".


La idea es que pongas el código entre etiquetas de código, y no suelto en medio del mensaje.
Una sugerencia CSS

Código:
 a:link{ text-decoration:none; font-weight: bold; color:#003333; }
 a:visited{ color:#003333; }
 a:hover{ text-decoration:underline; }
Puede que Chrome tenga problemas con alguna fuente, especialmente en su formato negrita. Prueba cambiando también a otra font.

Elimina también a.enlace {} para ver qué pasa, Porque al no poner el HTML no podemos adivinar para qué está. Bah, al no poner un ejemplo que podamos probar, no vamos a adivinar.