Bonjour,
J'ai un cadre blanc qui apparait dans ma page alors qu'il ne devrait pas être la
Voici mon CSS :
Et voici mon fichier php :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 .tab { background: url(/images/login_slide/tab_b.png) repeat-x 0 0; height: 42px; position: relative; top: 0; z-index: 999; } .tab ul.login { display: block; position: relative; float: right; clear: right; height: 42px; width: auto; font-weight: bold; line-height: 42px; margin: 0; right: 150px; color: white; font-size: 80%; text-align: center; } .tab ul.login li.left { background: url(/images/login_slide/tab_l.png) no-repeat left 0; height: 42px; width: 30px; padding: 0; margin: 0; display: block; float: left; } .tab ul.login li.right { background: url(/images/login_slide/tab_r.png) no-repeat left 0; height: 42px; width: 30px; padding: 0; margin: 0; display: block; float: left; } .tab ul.login li { text-align: left; padding: 0 6px; display: block; float: left; height: 42px; background: url(/images/login_slide/tab_m.png) repeat-x 0 0; } .tab ul.login li a { /*color: #15ADFF;*/ } .tab ul.login li a:hover { color: white; } .tab .sep {color:#414141} .tab a.open, .tab a.close { height: 20px; line-height: 20px !important; padding-left: 30px !important; cursor: pointer; display: block; width: 100px; position: relative; top: 11px; } .tab a.open {background: url(/images/login_slide/bt_open.png) no-repeat left 0;} .tab a.close {background: url(/images/login_slide/bt_close.png) no-repeat left 0;} .tab a:hover.open {background: url(/images/login_slide/bt_open.png) no-repeat left -19px;} .tab a:hover.close {background: url(/images/login_slide/bt_close.png) no-repeat left -19px;}
Puis-je avoir un petit coup de main ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 <div class="tab"> <ul class="login"> <li class="left"> </li> <li>Hello Guest!</li> <li class="sep">|</li> <li id="toggle"> <a id="open" class="open" href="#">Espace personnel</a> <a id="close" style="display: none;" class="close" href="#">Fermer</a> </li> <li class="right"> </li> </ul> </div>
Merci par avance,
Aurélien
Partager