Bonjour à tous,

J’essaie de personnaliser les sidebars de la page d’accueil de mon blog basé sur wordpress qui utilise le thème arjuna. Sur cette page je voulais avoir 2 sidebars, un de chaque côté. A l’origine, le sidebar s’affiche sur la droite. J’ai recopié et modifié le code pour avoir 2 sidebars, que j’ai introduit dans le template de ma page d’accueil. Celui qui est sur la droite s’affiche correctement. Par contre, pour le deuxième, il y a un grand espace entre le haut de la page et le premier élément que je n’arrive pas à éliminer. L’adresse du blog est : www.deviens.fr. Le sidebar est composé de 3 parties : le haut, le corps et le bas. J’ai essayé de bricoler les margins du corps (i, i2 et c) mais ça ne marche toujours pas. Voici le code de chaque sidebar et le stlyesheet correspondant :

Code html : 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
<div class="CSL"> pour la gauche et <div class="CSR"> pour la droite, le est reste identique:
	<div class="t"><div></div></div>
	<div class="i"><div class="i2"><div class="c">
 
		<h4><span><?php _e('Categories', 'Arjuna'); ?></span></h4>
		<ul>
			<?php wp_list_categories('show_count=0&title_li='); ?>
		</ul>
 
		<h4><span> Recent Posts </span></h4>
		<ul>
			<?php wp_get_archives('type=postbypost&limit=5'); ?>
		</ul>
 
	</div></div></div>
	<div class="b"><div></div></div>
</div>

Code css : 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/* Custom Sidebar Left */
.CSL {
	width:20%;
	float:left;
}
 
.CSL .t {
	height:170px;
	background:url(./images/sidebars.png) no-repeat 0 0;
	margin-left:-10px;
	margin-right:10px;
}
 
.CSL .t div {
	height:170px;
	width:15px;
	background:url(./images/sidebars.png) no-repeat -485px 0;
	float:left;
	margin-left:185px;
}
 
.CSL .b {
	height:15px;
	background:url(./images/sidebars.png) no-repeat 0 -170px;
	margin-left:-10px;
	margin-right:10px;
}
 
.CSL .b div {
	height:15px;
	width:15px;
	background:url(./images/sidebars.png) no-repeat -485px -170px;
	float:left;
	margin-left:185px;
}
 
.CSL .i {
	background:url(./images/sidebars.png) repeat-y -500px 0;
	margin: 0px 3px 0px -10px;
}
.CSL .i .i2 {
	background:url(./images/sidebars.png) repeat-y right 0;
	margin:0px -5px 0 5px;
	padding:1px 0;
}
.CSL .i .c {
	margin:-170px -5px 0 0;
	position:relative;
}	
 
.CSL h4 {
	border:1px solid #ccc;
	border-width:1px 0;
	background-color:#fbfbfb;
	margin:10px 10px 0px 0px;
}
 
.CSL h4 span {
	display:block;
	margin:1px 0;
	background-color:#ebebeb;
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px
	font-weight:bold;
	padding:5px 5px;
}
 
.CSL ul {
}
 
.CSL li {
	background:url(./images/sidebars.png) no-repeat 0 -225px;
	padding:0 0 0 20px;
	margin-bottom:1px;
	margin-left: 20px;
	line-height:18px;
	font-size:10px;
	font-family:Verdana, Geneva, sans-serif;
}
 
/* Custom Sidebar Right */
 
 
.CSR {
	width:20%;
	float:right;
}
 
.CSR .t {
	height:170px;
	background:url(./images/sidebars.png) no-repeat 0 0;
	margin-right:0px;
}
 
.CSR .t div {
	height:170px;
	width:15px;
	background:url(./images/sidebars.png) no-repeat -485px 0;
	float:right;
	margin-right:-10px;
}
 
.CSR .b {
	height:15px;
	background:url(./images/sidebars.png) no-repeat 0 -170px;
	margin-right:0px;
}
.CSR .b div {
	height:15px;
	width:15px;
	background:url(./images/sidebars.png) no-repeat -485px -170px;
	float:right;
	margin-right:-10px;
}
 
.CSR .i {
	background:url(./images/sidebars.png) repeat-y -500px 0;
	margin-right:-5px;
}
.CSR .i .i2 {
	background:url(./images/sidebars.png) repeat-y right 0;
	margin:0 -5px 0 5px;
	padding:1px 0;
}
.CSR .i .c {
	margin:-170px -5px 0 0;
	position:relative;
}	
 
.CSR h4 {
	border:1px solid #ccc;
	border-width:1px 0;
	background-color:#fbfbfb;
	margin:10px 10px 0px 0px;
}
 
.CSR h4 span {
	display:block;
	margin:1px 0;
	background-color:#ebebeb;
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px
	font-weight:bold;
	padding:5px 5px;
}
 
.CSR ul {
}
 
.CSR li {
	background:url(./images/sidebars.png) no-repeat 0 -225px;
	padding:0 0 0 20px;
	margin-bottom:1px;
	margin-left: 20px;
	line-height:18px;
	font-size:10px;
	font-family:Verdana, Geneva, sans-serif;
}

Est-ce que quelqu’un sait d’où ça peut venir ? Merci d’avance pour votre aide.