[CSS] Er ontstaan schuifbalken in IE 6.0

Pagina: 1
Acties:

  • Markje_X
  • Registratie: Maart 2000
  • Laatst online: 29-10-2014

Markje_X

a.k.a. Olthuis

Topicstarter
OP mijn volgende site: http://www.vriespoint.nl/nieuw en dan naar contact ontstaan er in IE 6.0 schuifbalken wat ik niet begrijp!

Verder laat Netscape 4.76 de achtergronden niet zien, hoe kan dit :?

  • Jox444
  • Registratie: Augustus 2001
  • Laatst online: 06:44

Jox444

Honestly....

Op woensdag 12 september 2001 18:20 schreef Mark Olthuis het volgende:
OP mijn volgende site: http://www.vriespoint.nl/nieuw en dan naar contact ontstaan er in IE 6.0 schuifbalken wat ik niet begrijp!

Verder laat Netscape 4.76 de achtergronden niet zien, hoe kan dit :?
Netscape ondersteunt dees nie volgens mij:
background-attachment: fixed;

anders ff hier kijke http://www.w3schools.com/css/

Het is FRIET!


Verwijderd

Op woensdag 12 september 2001 18:20 schreef Mark Olthuis het volgende:
OP mijn volgende site: http://www.vriespoint.nl/nieuw en dan naar contact ontstaan er in IE 6.0 schuifbalken wat ik niet begrijp![/b]
in IE 5.01 zie je geen schuifbalk dus DAT ligt niet aan site.

  • Markje_X
  • Registratie: Maart 2000
  • Laatst online: 29-10-2014

Markje_X

a.k.a. Olthuis

Topicstarter
ALs ik check op http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fwww.vriespoint.nl%2Fnieuw%2Fvriespoint.css&warning=no is de css helemaal goed!

Misschien ondersteunt netscape wel niet fixed, maar daarom kan hij toch nog wel de achtergrond weergeven :?

  • rickmans
  • Registratie: Juli 2001
  • Niet online

rickmans

twittert

Ns is überhaupt nogal buggy in correcte CSS ondersteuning maar misschien helpt dit wel in je CSS'je:
code:
1
2
background-repeat: no-repeat;
background-attachment: fixed;

Overigens lijkt me de scrollbar geheel correct (zelfs opera geeft dit weer :))

Don't mind Rick


  • Markje_X
  • Registratie: Maart 2000
  • Laatst online: 29-10-2014

Markje_X

a.k.a. Olthuis

Topicstarter
Op woensdag 12 september 2001 21:09 schreef rickmans het volgende:
Overigens lijkt me de scrollbar geheel correct (zelfs opera geeft dit weer :))
Waarom is die scrollbar dan geheel correct :? Ik zie niet in waarom die scrollbar er moet zijn op een resolutie van 1280*1024 pixels zie ik hem nog steeds.

De tip die je geeft om in me code te zetten gebruik ik al:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.boven {     background-color: #FFFFFF;
    background-image: url(image/boven.gif) ;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.adres {    background-color: #FFFFFF;
    background-image: url(image/adres.gif) ;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.menu { background-color: #FFFFFF;
    background-image: url(image/menu.gif) ;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home { background-color: #FFFFFF;
    background-image: url(image/achterhome.gif) ;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

P.right {
   font-size : 12pt; 
   font-family : Arial, Verdana; 
   color : black; 
   text-align : right; 
}

H4 {
   font-weight : bold; 
   font-size : 14pt; 
   font-family : Tempus Sans ITC, Arial, Verdana; 
   color : #381D7A; 
   text-align: right;
}

H3 {
   font-size : 14pt; 
   font-family : Tempus Sans ITC, Arial, Verdana; 
   color : #381D7A; 
   text-align : center; 
}


H2 {
   font-weight : bold; 
   font-size : 14pt; 
   font-family : Tempus Sans ITC, Arial, Verdana; 
   color : #381D7A; 
}


H1 {
   font-weight : bold; 
   font-size : 36pt; 
   font-family : Tempus Sans ITC, Arial, Verdana; 
   color : #381D7A; 
   text-align : center; 
}


BODY {
   font-size : 12pt; 
   font-family : Arial, Verdana; 
   color : black; 
   background : white url(image/achterover.gif) no-repeat fixed; 
}


A:link {
   font-size : 12pt; 
   font-family : Arial, Verdana; 
   color : #381D7A; 
   text-decoration : underline; 
}


A:hover {
   font-size : 12pt; 
   font-family : Arial, Verdana; 
   color : #381D7A; 
   text-decoration : none; 
}


A:active {
   font-size : 12pt; 
   font-family : Arial, Verdana; 
   color : #381D7A; 
   text-decoration : none; 
}

  • drm
  • Registratie: Februari 2001
  • Laatst online: 09-06-2025

drm

f0pc0dert

code:
1
2
3
4
5
    </table>
    </form>
    <p>&nbsp;</td>
  </tr>
</table>

onderaan je html.
Haal die <p>  eens weg. Heeft geen functie, en daar zou het wel eens aan kunnen liggen.

Music is the pleasure the human mind experiences from counting without being aware that it is counting
~ Gottfried Leibniz

Pagina: 1