Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/08/2009, 17:37
Avatar de Distriker
Distriker
 
Fecha de Ingreso: marzo-2008
Ubicación: Las Palmas De Gran Canarias
Mensajes: 924
Antigüedad: 16 años, 1 mes
Puntos: 23
Respuesta: Se me interpone el <hr> con un div

Cita:
Iniciado por deirdre Ver Mensaje
Hola Distriker

Supongo que te refieres al segundo <hr> porque tienes dos.

Deberías poner la hoja de estilo porque con el html sólo no ocurre lo que dices: tal como lo muestras el <hr> está en su sitio.

Bye
Esta es mi hoja de estilos general.

general.css
Código css:
Ver original
  1. body {
  2. color : #231F20 ;
  3. background : #C0D9D9 url(../images/fondo.gif) repeat fixed;
  4. margin : 20px 0px 20px 0px ;
  5. font : 8pt Verdana, Geneva, Arial, Helvetica, sans-serif ;
  6. text-align: center ;
  7. float: center ;
  8. }
  9.  
  10. #cabecera {
  11. width: 700px ;
  12. margin: 0 auto ;
  13. }
  14.  
  15. #navegacion {
  16. background: #B1DBE9 url(images/fondo-navegacion.gif) repeat scroll 0 0 ;
  17. border-top : 1px solid #cccccc ;
  18. border-bottom : 1px solid #cccccc ;
  19. margin:0 auto ;
  20. padding : 3px 10px 5px 10px ;
  21. width: 710px ;
  22. }
  23.  
  24. a.navegacion-pie:visited {
  25. color: #494E6B ;
  26. }
  27.  
  28. a.navegacion-pie:active {
  29. color: #3F7DE3 ;
  30. }
  31.  
  32. a.navegacion-pie:focus {
  33. color: #494E6B ;
  34. }
  35.  
  36. a.navegacion-pie:link {
  37. color: #494E6B ;
  38. line-height: 25px ;
  39. margin: 5px ;
  40. }
  41.  
  42. a.navegacion-pie:hover {
  43. color: #BD2031 ;
  44. }
  45.  
  46. /*Contenido*/
  47.  
  48. #contenido {
  49. text-align: left ;
  50. width: 920px ;
  51. margin: auto ;
  52. background-color: #FFFFFF ;
  53. }
  54.  
  55. #principal {
  56. width: 470px ;
  57. margin-left: 8px ;
  58. padding: 12px 0px 10px 0px ;
  59. background-color: #ffffff ;
  60. float: left ;
  61. }
  62.  
  63. h1 {
  64. font-size: 15px ;
  65. }
  66.  
  67. h2 {
  68. font-size: 13px ;
  69. }
  70.  
  71. /*Sidebar-left*/
  72.  
  73. #sidebar-left{
  74.     width: 200px ;
  75.     float:left ;
  76.     width: 200px ;
  77.   background: #36AAE9 ;
  78.   border: 1px solid #cccccc;
  79. }
  80.  
  81. .tit-left {
  82. background-color: #72A5DB ;
  83. font-weight: normal ;
  84. font-size:8pt ;
  85. letter-spacing: 1.5px ;
  86. padding: 7px 3px 7px 8px ;
  87. margin: 0px 0px 8px 0px ;
  88. text-transform : uppercase ;
  89. }
  90.  
  91. #sidebar-left ul {
  92. list-style: none ;
  93. margin : 5px 0px 0px 10px ;
  94. padding: 0px 4px 0px 0px ;
  95. }
  96.  
  97. #sidebar-left li {
  98. padding-left: 15px ;
  99. background: transparent url('../images/li.gif') scroll 0 2px no-repeat;
  100. margin: 2px ;
  101. }
  102.  
  103. /*Sidebar-right*/
  104.  
  105. #sidebar-right {
  106. width: 200px ;
  107. background: #36AAE9 ;
  108. border: 1px solid #cccccc;
  109. float: right ;
  110. }
  111.  
  112. .tit-right {
  113. background-color: #72A5DB ;
  114. font-weight: normal ;
  115. font-size:8pt ;
  116. letter-spacing: 1.5px ;
  117. padding: 7px 3px 7px 8px ;
  118. margin: 0px 0px 8px 0px ;
  119. text-transform : uppercase ;
  120. }
  121.  
  122. .parte-lateral {
  123. padding: 5px 4px 13px 10px ;
  124. }
  125.  
  126. input {
  127. font-size: 9px ;
  128. }
  129.  
  130. #buscador form {
  131. margin: 0px 0px 0px 0px ;
  132. }
  133.  
  134. #texto-a-buscar {
  135. float: left ;
  136. }
  137.  
  138. #texto-a-buscar input {
  139. width: 100px ;
  140. }
  141.  
  142. #boton-de-busqueda {
  143. padding-top: 3px ;
  144. padding-left: 115px ;
  145. }
  146.  
  147. #boton-de-busqueda input {
  148. border: 0px none ;
  149. }
  150.  
  151. .radio {
  152. clear: both ;
  153. }
  154.  
  155. #sidebar-right ul {
  156. list-style: none ;
  157. margin : 5px 10px 0px 0px ;
  158. padding: 0px 0px 0px 4px ;
  159. }
  160.  
  161. #sidebar-right li {
  162. padding-left: 15px ;
  163. background: transparent url('../images/li.gif') scroll 0 2px no-repeat;
  164. margin: 2px ;
  165. }
  166.  
  167. /* Las dos sidebars */
  168.  
  169. a.navegacion-side:visited {
  170. color: #494E6B ;
  171. }
  172.  
  173. a.navegacion-side:active {
  174. color: #3F7DE3;
  175. }
  176.  
  177. a.navegacion-side:focus {
  178. color: #494E6B ;
  179. }
  180.  
  181. a.navegacion-side:link {
  182. color: #494E6B ;
  183. }
  184.  
  185. a.navegacion-side:hover {
  186. color: #BD2031;
  187. }
  188.  
  189. /* Pie */
  190.  
  191. #pie {
  192. clear: both ;
  193. color: #cccccc ;
  194. text-align: right ;
  195. border-top: 1px solid ;
  196. margin: 10px 10px 0px 10px ;
  197. padding-bottom: 10px ;
  198. }
  199.  
  200. a.navegacion-pie:visited {
  201. color: #494E6B ;
  202. }
  203.  
  204. a.navegacion-pie:active {
  205. color: #3F7DE3;
  206. }
  207.  
  208. a.navegacion-pie:focus {
  209. color: #494E6B ;
  210. }
  211.  
  212. a.navegacion-pie:link {
  213. color: #494E6B ;
  214. }
  215.  
  216. a.navegacion-pie:hover {
  217. color: #3F7DE3;
  218. }

Por cierto, me refiero al <hr> que está despues de tantos <br>.

Saludos
__________________
Si no te quejas, nunca conseguiras nada, pero si te quejas siempre lo perderás todo.
Una mala acción da fruto a un mal Karma.