Hej,

mam problem z szablonem strony. Usunęłam pasek przewijania ale sposób w jaki to zrobiłam ma pewne wady i chciałbym go zmienić, ale nie wiem jak. Szczególnie chciałabym się pozbyć tych overflow i pozycjonowania relacyjnego - bo przez nie znikneło mi tło body pod explorerem 7. Bardzo proszę o pomoc. O to mój kod css:
  1. *
  2. {
  3. margin: 0px;
  4. padding: 0px;
  5. border: 0px;
  6. }
  7.  
  8. html
  9. {
  10. overflow: auto;
  11. margin: 0px;
  12. padding: 0px;
  13. text-align: center;
  14. background-color: white;
  15. background-image: url('tloszare.png');
  16. background-position: top center;
  17. background-repeat: repeat;
  18. }
  19.  
  20. body
  21. {
  22. overflow: hidden;
  23. position: relative;
  24. width: 1000px;
  25. float: none;
  26. clear: both;
  27. margin: 0px auto 0px auto;
  28. padding: 0px 10px 0px 10px;
  29. text-align: left;
  30. font-size: 11px;
  31. font-weight: normal;
  32. font-family: verdana, sans-serif;
  33. font-style: normal;
  34. background-color: black;
  35. color: white;
  36. background-image: url('krawedzie.png');
  37. background-position: center center;
  38. background-repeat: repeat-y;
  39. }
  40.  
  41. div#top
  42. {
  43. width: 1000px;
  44. height: 220px;
  45. float: none;
  46. clear: both;
  47. background-image: url('tloszare2.png');
  48. background-position: top center;
  49. background-repeat: repeat;
  50. }


pozdrawiam Jola

Zapomniałam napisać części kodu html:

  1. <div id="top">
  2. ...
  3. </div>
  4. ...
  5. </body>