Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > CSS
CSS Forum d'entraide sur l'utilisation des feuilles de style CSS. Avant de poster : Cours CSS, FAQ CSS, Galerie CSS
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 03/11/2011, 02h06   #1
Membre du Club
 
Avatar de bond70
 
Inscription : septembre 2008
Messages : 271
Détails du profil
Informations forums :
Inscription : septembre 2008
Messages : 271
Points : 45
Points : 45
Par défaut Bug affichage widget

Bonjour,

Je rencontre un problème d'affichage sur un des mes widgets.

Quand on passe la souris dessus, on s'aperçoit du problème.

Voici la page d'exemple : http://www.lincolnsmith.org/about-lincoln-smith/



Voici le code de la sidebar :

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
<?php
/**
 * The Sidebar containing the primary and secondary widget areas.
 * * @package iamilkay
 * @subpackage  iamilkay
 * @since  iamilkay
 */
?>
 
		<div id="primary" class="widget-area" role="complementary">
			<ul class="xoxo">
 
<?php
	/* When we call the dynamic_sidebar() function, it'll spit out
	 * the widgets for that widget area. If it instead returns false,
	 * then the sidebar simply doesn't exist, so we'll hard-code in
	 * some default sidebar stuff just in case.
	 */
	if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
 
			<li id="search" class="widget-container widget_search">
				<?php get_search_form(); ?>
			</li>
 
			<li id="archives" class="widget-container">
				<h3 class="widget-title"><?php _e( 'Archives', 'twentyten' ); ?></h3>
				<ul>
					<?php wp_get_archives( 'type=monthly' ); ?>
				</ul>
			</li>
 
			<li id="meta" class="widget-container">
				<h3 class="widget-title"><?php _e( 'Meta', 'twentyten' ); ?></h3>
				<ul>
					<?php wp_register(); ?>
					<li><?php wp_loginout(); ?></li>
					<?php wp_meta(); ?>
				</ul>
			</li>
 
		<?php endif; // end primary widget area ?>
			</ul>
		</div><!-- #primary .widget-area -->
 
<?php
	// A second sidebar for widgets, just because.
	if ( is_active_sidebar( 'secondary-widget-area' ) ) : ?>
 
		<div id="secondary" class="widget-area" role="complementary">
			<ul class="xoxo">
				<?php dynamic_sidebar( 'secondary-widget-area' ); ?>
			</ul>
		</div><!-- #secondary .widget-area -->
 
<?php endif; ?>
Savez-vous comment résoudre ce problème ?


MERCI !
bond70 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 03/11/2011, 10h19   #2
Membre éclairé
 
Homme
Développeur Sharepoint/Biztalk
Inscription : octobre 2008
Messages : 501
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : France, Pyrénées Atlantiques (Aquitaine)

Informations professionnelles :
Activité : Développeur Sharepoint/Biztalk

Informations forums :
Inscription : octobre 2008
Messages : 501
Points : 399
Points : 399
pour la deuxième partie, ne manquerait-il pas les balises <li> entre les balises <ul> ? Après je connais pas ces fonctions, elles les intègrent peut-être ...

Pour le problème du soulignement, il faudrait changer la hauteur des cases (tu as accès au css ?) pour que l'écriture ne se chevauche pas avec le trait.
bob633 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 03/11/2011, 23h28   #3
Membre du Club
 
Avatar de bond70
 
Inscription : septembre 2008
Messages : 271
Détails du profil
Informations forums :
Inscription : septembre 2008
Messages : 271
Points : 45
Points : 45
J'ai regardé avec Firebub, il semblerait que le css viennent d'un de ces deux fichiers.
Savez-vous d'où vient le problème ?

MERCI !

style.css

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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
/* HTML Options */
html {background-color:#f8f8f8;}
body {font-family: Arial, Helvetica, sans-serif; font-size:12px; line-height:19px; color:#888888; background-color:#f8f8f8;}
a { color:#3db7ce; text-decoration:none;}
a:hover { color:#262626; text-decoration:none;}
h1, h2, h3, h4, h5, h6 {font-family: 'AlternateGothic2BTRegular'; font-weight:normal; text-transform:uppercase; color:#262626;}
 
 
/* General Theme Style */
#top {position: absolute; background: url(../../image/theme/top-navi.png) repeat-x; width:100%; height:65px; margin-top:0px; left:0; z-index:-1;}
.logo { margin:0px;}
.menu {margin:0px 0px 0px 10px;}
.nav-button { float:right;}
.nav-button a {float:left; padding-left:8px; margin-top:16px;}
.dot { background:url(../../image/theme/dot.png) repeat-x; height:2px; width:100%; float:left; margin:6px 0px 38px 0px;}
 
/* Home Page */
/* Home Element > Slider Ribbon > Top Messgae > Hot News > Login Button > Signup Button > Go! Area (Mini Advert) > Latest News - Blog - Picture - List > Tab Menu > New Video > Random Poster > New Users and New Comment */
 
/* Home Page > Slider Ribbon */
#slider-ribbon { position:absolute; background:url(../../image/theme/ribbon.png) no-repeat; width:157px; height:128px; margin:-6px 0px 0px 782px; z-index:10;}
 
/* Home Page > Top Message */
.top-message { margin:43px 0px 18px -157px;}
.top-message h1 {font-family: 'AvantGardeDemiRegular'; font-size:26px; color:#f8f8f8; line-height:34px; background-color:#202020; padding:4px 10px 6px 10px; min-height:68px;}
 
.top-message-single {background-color:#202020; padding:4px 10px 6px 6px; height:68px; margin:43px 0px 18px -157px;}
.top-message-single img { float:left; margin:4px 10px 0px 2px; border:1px solid #FFF;}
.top-message-single h2 {font-family: 'AvantGardeDemiRegular'; font-size:26px; color:#f8f8f8; line-height:34px; margin-bottom:0px; margin-top:8px;}
.top-message-single p a { margin-left:2px;}
.top-message-single p a:hover { color:#FFF;}
 
/* Home Page > Hot News */
#hotnews-style { margin-left:0px;}
.hotnews-homepage { margin:34px auto;}
.hotnews-homepage img { padding:0px 6px 0px 2px}
.hotnews-homepage h1 {font-size:22px;}
.hotnews-homepage ul { list-style:none; margin:-8px 0px 0px 1px;}
 
/* Home Page > Login and Signup Button */
#login-signup { float:right; margin:30px 16px 0px 0px;}
 
/* Home Page > Go!Area Mini Advert */
#image-hover, #image-hover-two, #image-hover-three, #image-hover-four { position:absolute; background:url(../../image/theme/spacer.png) no-repeat; width:220px; height:110px; cursor:pointer;}
#image-hover:hover, #image-hover-two:hover, #image-hover-three:hover, #image-hover-four:hover { position:absolute; background:url(../../image/theme/hover-top-image.png) no-repeat; width:220px; height:110px; margin:2px -2px 0px 0px;}
.mini-advert {}
.mini-advert h1 {font-family: 'BouganBlackSSiBold'; font-weight:bold; font-size:21px; margin:16px 0px 14px 0px;}
.mini-advert p{ margin-bottom:10px; text-align:justify;}
 
/* Home Page > Latest Elements (News, Blog, Picture, List and Tab Menu) */
.latest-elements {}
.latest-elements h1 {font-size:26px; margin-bottom:10px;}
.latest-elements p { font-style:italic; margin-left:2px;}
.tab-menu { list-style:none; float:left;}
.tab-menu li {float:left; border-top:1px solid #ededed; margin-top:0px; padding-top:18px;}
.tab-menu li img {background: url(../../image/theme/tab-image-back.png) no-repeat; padding:9px; margin:0px 14px 0px 0px; float:left;}
.tab-menu p { font-style:normal; padding:10px 0px 0px 10px; text-align:justify;}
.tab-menu-picture-list { list-style:none;}
.tab-menu-picture-list li {float:left; margin-top:0px; padding-top:18px;}
.tab-menu-picture-list img {background: url(../../image/theme/tab-image-back.png) no-repeat; padding:9px; margin:0px 0px 0px 0px; float:left;}
.tab-menu-list { list-style:none; float:left;}
.tab-menu-list li {float:left; min-width:420px; border-top:1px solid #ededed; margin-top:0px; padding-top:8px; margin-bottom:2px;}
.tab-date { background:url(../../image/theme/date-back.png) no-repeat; width:70px; height:18px; font-weight:normal; font-size:9px; display:inline-block;  color:#FFF; padding:1px 2px 0px 1px; text-align:center; font-style:normal;}
.tab-date p { color:#FFF; padding:1px 2px 0px 1px; text-align:center; font-style:normal;}
.tab-menu-link { font-size:14px; padding:0px 0px 0px 10px;}
 
/* Home Page > New Video */
.new-video { margin:25px 0px 0px 1px;}
.new-video h2 {font-family: Arial, Helvetica, sans-serif; font-size:14px; color:#3db7ce; text-decoration:none; padding:0px 0px 0px 0px; margin:0px 0px 12px -1px;}
.new-video p { font-style:normal; text-align:justify; margin:0px 0px 0px 0px;}
 
/* Home Page > Random Poster */
#random-poster-back { position: relative; background:url(../../image/theme/random-poster-back.png) repeat-x top left; float:left; height:337px; width:100%; margin:-38px 0px 0px 0px; z-index:-1;}
#random-poster { margin:-300px 0px 0px 1px;}
#random-poster h1 {font-size:26px; margin-bottom:10px;}
#random-poster p { font-style:italic; margin-left:2px;}
 
/* Home Page > New User */
.new-users { margin:36px 0px 0px 1px;}
.new-users h1 {font-size:26px; margin-bottom:10px;}
.new-users p { font-style:italic; margin-left:2px; margin-bottom:24px;}
.new-users-list { float:left; margin:0px 0px 0px 2px;}
.new-users-list img { margin:0px 16px 14px 0px;}
 
/* Home Page > New Commets */
.new-comments {margin:36px 0px 0px 19px;}
.new-comments ul { list-style:none; margin:0px -16px 0px 0px;}
.new-comments ul li { margin:0px 18px 12px 4px; border-top:1px solid #f2f2f2; padding:10px 0px 0px 0px; font-size:12px;}
.new-comments h1 {font-size:26px; margin-bottom:10px;}
.new-comments p { font-style:italic; margin-left:2px; margin-bottom:24px;}
.user-mask { position: absolute; display: block; margin:-1px 0px 0px -1px; background:url(../../image/theme/user-mask.png) no-repeat; width:62px; height:63px;}
#user-mask-two { position: absolute; display: block; margin:0px 0px 0px -2px; background:url(../../image/theme/user-mask.png) no-repeat; width:62px; height:63px;}
 
/* Blog Page */
/* Blog Page Elements > Blog Page General > Sidebar > Post Blog > Post Elements (Mp3, Video, Picture Buttons) > Blog Read (Single) > Page Navi */
 
/* Blog Page > General */
.blog-page { margin:40px 0px 0px 0px;}
.blog-page h1 {font-size:26px;}
.blog-page h2 {}
.blog-page-space {font-family: Arial, Helvetica, sans-serif; color:#888888; font-size:12px; text-transform:none; font-style:italic; margin:-14px 0px -2px 1px;  border-bottom:1px solid #ededed; padding-bottom:14px;}
 
/* Blog Page > Sidebar */
.sidebar-normal { width:420px; height:321px; overflow: hidden; color:#fff; }
.sidebar-normal h2 { margin:30px 0px 10px 18px; font-size: 22px;}
.sidebar-normal img { margin:10px 0px 0px 18px;}
.sidebar-normal ul, .sidebar-archives ul, .sidebar-tags ul { margin:14px 0px -10px 18px; padding-top:14px; border-top: 1px solid #e9e9e9; list-style:none; width:92%;}
.sidebar-normal ul li { background:url(../../image/theme/dot-2.png) 0px 0px; height:22px;  padding:2px 0px 14px 26px; margin-left:-2px;}
.sidebar-normal ul li:hover { background:url(../../image/theme/dot-2.png) 0px -37px;}
.sidebar-normal ul li a, .sidebar-archives ul li a, .sidebar-tags ul li a {color:#a0a0a0;}
.sidebar-normal ul li a:hover, .sidebar-archives ul li a:hover, .sidebar-tags ul li a:hover {color:#262626;}
.sidebar-normal label { color:#000; margin-left:18px;}
 
.sidebar-normal  input[type="text"] { background:url(../../image/theme/form-back.png) repeat-x; height:25px; border:1px solid #fff; color:#fff; font-weight:bold; font-size:10px; padding-left:10px; width:89%; margin:10px 10px 0px 16px;}
.sidebar-normal  input[type="password"] { background:url(../../image/theme/form-back.png) repeat-x; height:25px; border:1px solid #fff; color:#fff; font-weight:bold; font-size:10px; padding-left:10px; width:89%; margin:10px 10px 0px 16px;}
.sidebar-normal  input[type="checkbox"] { margin:20px -10px 0px 18px;}
.sidebar-normal  input[type="text"]:focus {}
.sidebar-normal  textarea { background-color:#262626; height:40px; border:1px solid #fff; color:#fff; font-size:11px; padding-top:10px; padding-left:10px; width:360px; margin:0px 10px 0px 16px;}
.sidebar-normal  textarea:focus {}
.sidebar-normal  input[type="submit"] { margin:20px 0px 0px 16px; height:34px; min-width:80px; font-weight:bold;}
.sidebar-normal  input[type="submit"]:hover {}
 
.sidebar-categories, .sidebar-archives, .sidebar-tags { margin:10px 0px 0px 0px; padding-bottom:0px;}
.sidebar-categories h1, .sidebar-archives h1, .sidebar-tags h1 {font-size:22px; padding-top:30px;}
.sidebar-categories h2, .sidebar-archives h2, .sidebar-tags h2 {font-family: Arial, Helvetica, sans-serif; color:#888888; font-size:12px; text-transform:none; font-style:italic; margin:-10px 0px 0px 1px;}
.sidebar-categories ul, .sidebar-archives ul, .sidebar-tags ul { margin:14px 0px 0px 0px; padding-top:14px; border-top: 1px solid #e9e9e9; list-style:none; width:274px;}
.sidebar-categories ul li { background:url(../../image/theme/dot-2.png) 0px 0px; height:22px;  padding:2px 0px 14px 26px; margin-left:-2px;}
.sidebar-categories ul li:hover { background:url(../../image/theme/dot-2.png) 0px -37px;}
.sidebar-categories ul li a, .sidebar-archives ul li a, .sidebar-tags ul li a {color:#a0a0a0;}
.sidebar-categories ul li a:hover, .sidebar-archives ul li a:hover, .sidebar-tags ul li a:hover {color:#262626;}
.sidebar-categories ul li ul, .sidebar-archives ul li ul { display:none;}
 
#calendar_wrap { width:270px; margin-left:2px; margin-bottom:0px;}
#wp-calendar { width:100%;}
#wp-calendar caption {font-family: 'AvantGardeDemiRegular'; font-size:16px; text-transform:uppercase; padding:10px 0px 10px 0px; color:#FFF; margin-bottom:10px; background-color:#1ab1ce;}
#wp-calendar thead {font-family: 'AvantGardeDemiRegular'; font-size:14px; text-transform:uppercase; text-align:center; border:1px solid #e4e4e4;}
#wp-calendar tbody {font-size:12px; text-transform:uppercase; text-align:center; border:1px solid #e4e4e4; background-color:#fcfcfc;}
#wp-calendar tfoot {}
 
.sidebar { margin:40px 0px 0px 0px; padding-bottom:0px;}
.sidebar h1 { margin-top:40px;font-size:22px; color:#FFF;}
.sidebar h2,{font-family: Arial, Helvetica, sans-serif; color:#fff; font-size:12px; text-transform:none; font-style:italic; margin:-10px 0px 0px 1px;}
.sidebar ul { margin:14px 0px -10px 0px; padding-top:14px; border-top: 1px solid #e9e9e9; list-style:none; width:274px;}
.sidebar ul li { background:url(../../image/theme/dot-4.png) 0px 0px; height:22px;  padding:2px 0px 14px 12px; margin-left:-2px;}
.sidebar ul li:hover { background:url(../../image/theme/dot-4.png) 0px -37px;}
.sidebar ul li a {color:#a0a0a0;}
.sidebar ul li a:hover {color:#262626;}
.sidebar ul li ul { display:none;}
 
.sidebar-archives ul li { background:url(../../image/theme/dot-3.png) 0px 0px; height:22px;  padding:2px 0px 14px 26px; margin-left:-2px;}
.sidebar-archives ul li:hover { background:url(../../image/theme/dot-3.png) 0px -37px;}
.sidebar-tags a {float:left; background:url(../../image/theme/tag-back.png) repeat-x top right; height:23px; text-align:center; padding:3px 16px 0px 6px; border-left:1px solid #dbdbdb; margin:4px 10px 14px 0px; color:#a0a0a0; font-size: 12px;}
 
/* Blog Page > Blog Post */
#post-blog-list, #post-blog-list-2, #post-blog-list-3, #post-blog-list-4, #post-blog-list-5, #post-blog-list-6 {width:320px; height: 200px; margin-right:29px;}
.post-blog { margin:30px 0px 0px 1px;}
.post-blog img { background-color:#f3f3f3; padding:10px; border:1px solid #e4e4e4;}
.post-blog h2 { font-size:22px; margin:20px 0px 16px 0px;}
.post-blog h3 { font-family:Arial, Helvetica, sans-serif; font-size:11px; font-style:normal; color:#b0b0b0; border:none; margin:-10px 0px 10px 0px;}
.post-blog p { text-align:justify; padding:0px 20px 0px 1px;}
.post-blog-dot {border-bottom:1px solid #ededed; display:block; margin:76px 0px 0px 0px; width:320px;}
 
/* Blog Page > Post Elements (Mp3, Video, Picture Ajax Popup Buttons) */
.post-elements { position:absolute; width:320px; margin:138px 0px 0px 0px; z-index:1;}
.post-elements img, #post-elements-two img {border:none; background-color:transparent;}
.post-elements ul { list-style:none; padding-right:24px; float:right;}
.post-elements ul li { float:left; margin:0px -20px 0px 0px;}
 
#post-elements-two { position:absolute; width:680px; margin:302px 0px 0px 0px; z-index:100;}
#post-elements-two ul { list-style:none; padding-right:24px; float:right;}
#post-elements-two ul li { float:left; margin:0px 0px 0px 0px;}
 
 
/* Blog Page > Blog Read (Single Page) */
.alignleft { float:left; margin:16px 20px 12px 1px;}
.alignright { float:right; margin:16px 1px 12px 20px;}
#post-blog-list-read { width:670px;}
.post-blog-read { margin:30px 0px 0px 1px;}
.post-blog-read img { background-color:#f3f3f3; padding:10px; border:1px solid #e4e4e4;}
.post-blog-read p { text-align:justify; padding:10px 0px 10px 0px; margin:0px 0px -6px 0px;}
.post-blog-read h1, .post-blog-read h2, .post-blog-read h3, .post-blog-read h4, .post-blog-read h5, .post-blog-read h6 {font-family: 'AlternateGothic2BTRegular'; font-weight:normal; text-transform:uppercase; font-style:normal; border:0px solid; color:#262626; margin:20px 0px 4px 0px;}
.post-blog-read h1 { font-size:28px;}
.post-blog-read h2 { font-size:26px;}
.post-blog-read h3 { font-size:24px;}
.post-blog-read h4 { font-size:22px; color:#888888;}
.post-blog-read h5 { font-size:20px; color:#888888;}
.post-blog-read h6 { font-size:18px; color:#888888;}
.post-blog-read blockquote {margin:20px 0 14px 1px; border-left:10px solid #262626;}
.post-blog-read blockquote p {padding:14px; font-style:italic; font-size:13px;}
.post-blog-read ul { color:#262626; margin:14px 0px 0px -32px; display:block; list-style:none;}
.post-blog-read ul li { background:url(../../image/theme/document.png) no-repeat left top; padding:0px 0px 6px 20px; }
.post-blog-read ol { color:#262626; margin:14px 0px 0px -32px; display:block; list-style:none;}
.post-blog-read ol li { background:url(../../image/theme/check.png) no-repeat left top; padding:0px 0px 6px 20px; }
.post-blog-read code { background-color:#262626; padding:4px; border-bottom:#fff 1px solid; line-height:24px;}
.post-blog-read h1 a, .post-blog-read h2 a { color:#262626;}
.post {border-bottom:1px dashed #e4e4e4; padding-bottom:22px;}
#nav-above { display:none;}
 
/* Blog Page > Page Navi */
.page-navi { margin:20px 0px 0px -20px;}
.page, .nextpostslink, .previouspostslink {font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px; color:#808080;  background: url(../../image/theme/pagenavi.png) right no-repeat; display: inline-block; width:36px; height:32px; text-align:center;}
.current {font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px; color:#fff;  background: url(../../image/theme/pagenavi2.png) right no-repeat; display: inline-block; width:36px; height:32px; text-align:center;}
.pages { display:none;}
.wp-pagenavi a {text-decoration: none; border: 0px solid #BFBFBF; padding: 13px 0px 0px 22px; margin:2px -10px 0px 0px; text-align:center;}
.wp-pagenavi span { text-decoration: none; border: 0px solid #BFBFBF; padding: 13px 0px 0px 22px; margin:2px -10px 0px -2px;}
 
.nav-previous, .nav-next { margin:20px 0px 0px -7px;}
.nav-previous a, .nav-next a { background:none; width:100px; font-size:14px; text-transform:uppercase;}
 
/* Blog Page > Comment */
#blog-comment { margin:40px 0px 0px 0px; border-top:1px solid #ededed; padding-top:20px;}
.user-comments { margin:28px 0px 0px 1px; border-bottom:1px dashed #e4e4e4; padding-bottom:10px;}
.user-comments img { float:left; margin:0px 20px 0px 0px;}
.user-comments h6 { font-style:normal; font-size:16px; margin:0px 0px 0px 0px; padding-top:10px;}
.user-comments p { margin-top:4px; text-align:justify;}
.fn, .fn a { font-style:normal; color:#3db7ce;}
.says {}
.children { background:url(../../image/theme/reply.png) no-repeat left bottom; margin:0px 0px 0px 32px; padding:0px 0px 0px 20px;}
.children .fn, .children .fn a {color:#d74762;}
 
.popup-comment { background-color:#262626; width:420px; overflow: hidden; color:#fff;}
.popup-comment  input[type="text"] { background:url(../../image/theme/form-back.png) repeat-x; height:25px; border:1px solid #fff; color:#fff; font-weight:bold; font-size:10px; padding-left:10px; width:360px; margin:0px 10px 0px 16px;}
.popup-comment  input[type="text"]:focus {}
.popup-comment  textarea { background-color:#262626; height:40px; border:1px solid #fff; color:#fff; font-size:11px; padding-top:10px; padding-left:10px; width:360px; margin:0px 10px 0px 16px;}
.popup-comment  textarea:focus {}
.popup-comment  input[type="submit"] { margin:-20px 0px 0px 16px; height:34px; min-width:80px; font-weight:bold;}
.popup-comment  input[type="submit"]:hover {}
.popup-comment h3 { color:#FFF; margin:20px 0px 10px 14px;}
.popup-comment label {margin:0px 0px 4px 14px;}
.comment-notes { display:none;}
.form-allowed-tags {margin:0px 28px 24px 16px; line-height:14px; font-size:10px; text-align:justify;}
.logged-in-as {margin:0px 0px 4px 14px;}
 
/* Services Page */
.services { margin:30px 20px 0px 0px;}
.services img { float:left; margin:0px 20px 0px 0px;}
.services p { margin:0px 0px 0px 0px;}
 
/* About Page */
.about{ margin:24px 22px -14px 0px; float:right; padding-bottom:16px;}
.about img { float:right; margin:0px 0px 0px 0px;}
.about p { margin:0px 0px -4px 10px; font-size:11px;}
 
/* Music Playlist */
#listing { margin:0px 0px 0px -10px; width:970px;}
.music-playlist {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 10px 0px 10px; margin:0px 20px 22px 0px; max-height:48px; min-width:198px; float:left;}
.music-playlist-left { margin-right:10px; float:left;}
.music-playlist-right { position: relative; margin:-46px 0px 0px 170px; float:right;}
.music-playlist img {}
.music-playlist h1 { font-size:16px; margin:0px 0px -2px 0px;}
 
/* Video Playlist */
.video-playlist {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 0px 0px 10px; margin:0px 30px 30px 0px; min-width:198px; float:left;}
.video-playlist-left {}
.video-playlist-right { position: relative; margin:-46px 9px 0px 0px; float:right;}
.video-playlist img {}
.video-playlist h1 { font-size:16px; margin:6px 0px 0px 0px;}
 
/* Photo Playlist */
.photo-playlist {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 0px 12px 10px; margin:0px 30px 30px 0px; min-width:198px; float:left;}
.photo-playlist-left {}
.photo-playlist-right { position: relative; margin:-22px 9px 0px 0px;}
.photo-playlist img {}
.photo-playlist h1 { font-size:16px; margin:8px 0px 0px 0px;}
 
/* Portfolio One */
.portfolio-one {margin:0px 30px 30px 0px; float:left; border-bottom:1px dashed #ededed; padding:0px 0px 30px 0px;}
.portfolio-one-left { float:left;}
.portfolio-one-right { position: relative; margin:-22px 9px 0px 0px;}
.portfolio-one img {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 10px 10px 10px; margin:0px 20px 0px 0px;}
.portfolio-one h1 { font-size:21px; margin:10px 0px 10px 0px;}
.portfolio-one p { text-align:justify;}
 
/* Portfolio Two */
.portfolio-two {margin:0px 30px 30px 0px; float:left; border-bottom:1px dashed #ededed; padding:0px 0px 24px 0px; max-width:455px;}
.portfolio-two-left { float:left;}
.portfolio-two-right { position: relative; margin:-22px 9px 0px 0px;}
.portfolio-two img {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 10px 10px 10px; margin:0px 20px 0px 0px;}
.portfolio-two h1 { font-size:21px; margin:10px 0px 10px 0px;}
.portfolio-two p { text-align:justify;}
 
/* Portfolio Three */
.portfolio-three {margin:0px 30px 30px 0px; float:left; border-bottom:1px dashed #ededed; padding:0px 0px 24px 0px; max-width:283px;}
.portfolio-three-left {}
.portfolio-three-right { position: relative; margin:-22px 9px 0px 0px;}
.portfolio-three img {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 10px 10px 10px; margin:0px 20px 16px 0px; width:260px;}
.portfolio-three h1 { font-size:21px; margin:10px 0px 10px 0px;}
.portfolio-three p { text-align:justify;}
 
/* Portfolio Four */
.portfolio-four {margin:0px 30px 30px 0px; float:left; border-bottom:1px dashed #ededed; padding:0px 0px 24px 0px; max-width:212px;}
.portfolio-four-left {}
.portfolio-four-right { position: relative; margin:-22px 9px 0px 0px;}
.portfolio-four img {background-color:#f3f3f3; border:1px solid #e4e4e4; padding:10px 10px 10px 10px; margin:0px 20px 16px 0px; width:190px;}
.portfolio-four h1 { font-size:21px; margin:10px 0px 10px 0px;}
.portfolio-four p { text-align:justify;}
 
 
/* Example */
.example h4 { font-size:22px; color:#888888; margin-bottom:14px; margin-top:24px;}
.rightbar { margin:20px 0px 0px 40px;}
.addtoany_share_save_container { float:right; margin:-56px -8px 0px 0px;}
.ratingblock { margin-top:30px; clear:both;}
.columbone { float:left; margin:0px; width:220px; text-align:justify; padding:0px 20px 0px 0px;}
.columbone-last { float:right; margin:0px; width:220px; text-align:justify; padding:0px 0px 0px 0px;}
.columbtwo { float:left; margin:0px; width:300px; text-align:justify; padding:0px 20px 0px 0px;}
.columbtwo-last { float:right; margin:0px; width:300px; text-align:justify; padding:0px 0px 0px 0px;}
.columbthree { float:left; margin:0px; width:460px; text-align:justify; padding:0px 20px 0px 0px;}
.columbthree-last {  float:right; margin:0px; width:460px; text-align:justify; padding:0px 0px 0px 0px;}
 
.bcolumbone { float:left; margin:10px 0px 14px 0px; width:322px; text-align:justify; padding:0px 20px 0px 0px;}
.bcolumbone-last { float: right; margin:10px 0px 14px 0px; width:322px; text-align:justify; padding:0px 0px 0px 0px;}
 
/* Filter > Music Playlist, Photo, Video Playlist and Portfolio */
.splitter { margin:20px 0px 0px -54px;}
.splitter ul {margin-right: 0; margin-top: 0;}
.splitter li,.splitter ul,.splitter ul li a  { list-style:none; float:left;}
.splitter ul li {margin-left: 20px;}
.splitter ul li:first-child {margin-left: 0;}
.splitter ul li a {font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px; color:#808080;  background: url(../../image/theme/middle-button-right.png) right no-repeat; width:100%; height:32px; text-align:center; padding:12px 4px 0px 0px; margin:0px 0px 0px 18px;}
.splitter ul li a:hover {color: #262626;}
.splitter ul li.selected-2 a {color: #262626;}
.splitter ul li .current {width:100%;}
 
/* Footer Area */
/* Footer Area  Elements > Back (Background Image) > Register (About, Contact menu vs) > Social (Social Buttons) */
 
/* Footer Area > Background */
#footer-back { position: relative; background: url(../../image/theme/footer-back.png) repeat-x top left; bottom:0; float:left; height:74px; width:100%; margin:30px 0px 0px 0px; z-index:-1;}
 
/* Footer Area > Register */
#footer-register { font-size:10px; margin:-54px 0px 0px 1px;}
#footer-register ul { list-style:none; float:left; margin:-20px 0px 0px -29px;}
#footer-register ul li {float:left; border-right:1px solid #e5e5e5; padding:0px 10px 0px 0px; margin-right:-20px;}
 
/* Footer Area > Social Buttons */
#footer-social{ margin:-54px 0px 0px 477px;}
#footer-social ul { list-style:none; float:right;}
#footer-social ul li {float:left; margin-left:10px;}
 
 
 
/* All Button */
.buton-login-mini { background:url(../../image/theme/login-mini.png) no-repeat top; display:block; width:24px; height:24px;}
.buton-login-mini:hover { background:url(../../image/theme/login-mini.png) no-repeat bottom;}
.buton-signup-mini { background:url(../../image/theme/signup-mini.png) no-repeat top; display:block; width:24px; height:24px;}
.buton-signup-mini:hover { background:url(../../image/theme/signup-mini.png) no-repeat bottom;}
.buton-search-mini { background:url(../../image/theme/mini-search.png) no-repeat top; display:block; width:24px; height:24px;}
.buton-search-mini:hover { background:url(../../image/theme/mini-search.png) no-repeat bottom;}
.button-icon { width:43px; height:43px; float:left; margin-top:-10px;}
 
.green-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:left; background:url(../../image/theme/greenbutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.green-right { background:url(../../image/theme/grenbutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
.green-button a img { border:0px solid;}
 
.gold-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:left; background:url(../../image/theme/goldbutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.gold-right { background:url(../../image/theme/goldbutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
 
.brown-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:left; background:url(../../image/theme/brownbutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.brown-right { background:url(../../image/theme/brownbutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
 
.purple-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:left; background:url(../../image/theme/purplebutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.purple-right { background:url(../../image/theme/purplebutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
 
.red-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:right; background:url(../../image/theme/redbutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.red-right { background:url(../../image/theme/redbutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
 
.red2-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:16px; color:#f8f8f8; float:left; background:url(../../image/theme/redbutton-right.png) right no-repeat; display: inline-block; min-width:80px; height:43px; text-align:center; padding:20px 12px 0px 0px; margin:0px 0px 0px 18px;}
.red2-right { background:url(../../image/theme/redbutton-left.png) no-repeat left; float:left; width:5px; height:43px; margin:-10px 0px 0px -5px;}
 
.grey-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px; color:#808080;  background: url(../../image/theme/grey-button-right.png) right no-repeat; display: inline-block; min-width:80px; height:44px; text-align:center; padding:26px 12px 0px 0px; margin:0px 0px 0px 18px;}
.grey-right { background: url(../../image/theme/grey-button-left.png) no-repeat left; float:left; width:5px; height:44px; margin:-13px 0px 0px -5px;}
 
.middle-button{font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px; color:#808080;  background: url(../../image/theme/middle-button-right.png) right no-repeat; display: inline-block; min-width:40px; height:32px; text-align:center; padding:12px 4px 0px 0px; margin:0px 0px 0px 18px;}
.middle-right { background: url(../../image/theme/midle-button-left.png) no-repeat left; float:left; width:5px; height:32px; margin:-6px 0px 0px -5px;}
 
.generalbutton { float:left; margin-bottom:-10px;}
.generalbutton .grey-button img { border:0px solid; background-color:transparent; margin:-20px 0px 0px -6px;}
.generalbutton .grey-button { min-width:90px; padding:27px 20px 0px 0px; margin:10px 0px 0px 0px;}
.generalbutton .grey-right { margin:-13px 0px 0px -5px;}
 
.generalbutton .green-button img, .generalbutton .red2-button img, .generalbutton .brown-button img, .generalbutton .gold-button img, .generalbutton .purple-button img  { border:0px solid; background-color:transparent; margin:-22px 0px 0px -6px;}
.generalbutton .green-button, .generalbutton .red2-button, .generalbutton .brown-button, .generalbutton .gold-button, .generalbutton .purple-button { min-width:90px; padding:22px 20px 0px 0px; margin:10px 0px 0px 0px;}
.generalbutton .green-right, .generalbutton .red2-right, .generalbutton .brown-right, .generalbutton .gold-right, .generalbutton .purple-right  { margin:-11px 0px 0px -5px;}
 
.m1 a{ background-color:#ededed; color:#262626; -moz-border-radius: 15px; border-radius: 15px; display:block; height:60px; margin:0px 0px 0px 0px}
.m1 a:hover{ background-color:#262626; color:#ededed;}
.m1 img { float:left; border:0px solid; margin:-8px 4px 10px 10px; background-color:transparent;}
.m1 p { margin:0px 0px 0px 0px; padding:20px 0px 0px 0px; font-family: 'AvantGardeDemiRegular'; font-size:21px; text-transform:uppercase;}
 
.top-message h2 {
    background-color: #202020;
    color: #F8F8F8;
    font-family: 'AvantGardeDemiRegular';
    font-size: 26px;
    line-height: 34px;
    min-height: 68px;
    padding: 4px 10px 6px;
}
general.css

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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
/** Grid System **/
 
body{min-width:960px}.container_12,.container_16{margin-left:auto;margin-right:auto;width:960px}.grid_1,.grid_2,.grid_3,.grid_4,.grid_5,.grid_6,.grid_7,.grid_8,.grid_9,.grid_10,.grid_11,.grid_12,.grid_13,.grid_14,.grid_15,.grid_16{display:inline;float:left;margin-left:10px;margin-right:10px}.push_1,.pull_1,.push_2,.pull_2,.push_3,.pull_3,.push_4,.pull_4,.push_5,.pull_5,.push_6,.pull_6,.push_7,.pull_7,.push_8,.pull_8,.push_9,.pull_9,.push_10,.pull_10,.push_11,.pull_11,.push_12,.pull_12,.push_13,.pull_13,.push_14,.pull_14,.push_15,.pull_15{position:relative}.container_12 .grid_3,.container_16 .grid_4{width:220px}.container_12 .grid_6,.container_16 .grid_8{width:460px}.container_12 .grid_9,.container_16 .grid_12{width:700px}.container_12 .grid_12,.container_16 .grid_16{width:940px}.alpha{margin-left:0}.omega{margin-right:0}.container_12 .grid_1{width:60px}.container_12 .grid_2{width:140px}.container_12 .grid_4{width:300px}.container_12 .grid_5{width:380px}.container_12 .grid_7{width:540px}.container_12 .grid_8{width:620px}.container_12 .grid_10{width:780px}.container_12 .grid_11{width:860px}.container_16 .grid_1{width:40px}.container_16 .grid_2{width:100px}.container_16 .grid_3{width:160px}.container_16 .grid_5{width:280px}.container_16 .grid_6{width:340px}.container_16 .grid_7{width:400px}.container_16 .grid_9{width:520px}.container_16 .grid_10{width:580px}.container_16 .grid_11{width:640px}.container_16 .grid_13{width:760px}.container_16 .grid_14{width:820px}.container_16 .grid_15{width:880px}.container_12 .prefix_3,.container_16 .prefix_4{padding-left:240px}.container_12 .prefix_6,.container_16 .prefix_8{padding-left:480px}.container_12 .prefix_9,.container_16 .prefix_12{padding-left:720px}.container_12 .prefix_1{padding-left:80px}.container_12 .prefix_2{padding-left:160px}.container_12 .prefix_4{padding-left:320px}.container_12 .prefix_5{padding-left:400px}.container_12 .prefix_7{padding-left:560px}.container_12 .prefix_8{padding-left:640px}.container_12 .prefix_10{padding-left:800px}.container_12 .prefix_11{padding-left:880px}.container_16 .prefix_1{padding-left:60px}.container_16 .prefix_2{padding-left:120px}.container_16 .prefix_3{padding-left:180px}.container_16 .prefix_5{padding-left:300px}.container_16 .prefix_6{padding-left:360px}.container_16 .prefix_7{padding-left:420px}.container_16 .prefix_9{padding-left:540px}.container_16 .prefix_10{padding-left:600px}.container_16 .prefix_11{padding-left:660px}.container_16 .prefix_13{padding-left:780px}.container_16 .prefix_14{padding-left:840px}.container_16 .prefix_15{padding-left:900px}.container_12 .suffix_3,.container_16 .suffix_4{padding-right:240px}.container_12 .suffix_6,.container_16 .suffix_8{padding-right:480px}.container_12 .suffix_9,.container_16 .suffix_12{padding-right:720px}.container_12 .suffix_1{padding-right:80px}.container_12 .suffix_2{padding-right:160px}.container_12 .suffix_4{padding-right:320px}.container_12 .suffix_5{padding-right:400px}.container_12 .suffix_7{padding-right:560px}.container_12 .suffix_8{padding-right:640px}.container_12 .suffix_10{padding-right:800px}.container_12 .suffix_11{padding-right:880px}.container_16 .suffix_1{padding-right:60px}.container_16 .suffix_2{padding-right:120px}.container_16 .suffix_3{padding-right:180px}.container_16 .suffix_5{padding-right:300px}.container_16 .suffix_6{padding-right:360px}.container_16 .suffix_7{padding-right:420px}.container_16 .suffix_9{padding-right:540px}.container_16 .suffix_10{padding-right:600px}.container_16 .suffix_11{padding-right:660px}.container_16 .suffix_13{padding-right:780px}.container_16 .suffix_14{padding-right:840px}.container_16 .suffix_15{padding-right:900px}.container_12 .push_3,.container_16 .push_4{left:240px}.container_12 .push_6,.container_16 .push_8{left:480px}.container_12 .push_9,.container_16 .push_12{left:720px}.container_12 .push_1{left:80px}.container_12 .push_2{left:160px}.container_12 .push_4{left:320px}.container_12 .push_5{left:400px}.container_12 .push_7{left:560px}.container_12 .push_8{left:640px}.container_12 .push_10{left:800px}.container_12 .push_11{left:880px}.container_16 .push_1{left:60px}.container_16 .push_2{left:120px}.container_16 .push_3{left:180px}.container_16 .push_5{left:300px}.container_16 .push_6{left:360px}.container_16 .push_7{left:420px}.container_16 .push_9{left:540px}.container_16 .push_10{left:600px}.container_16 .push_11{left:660px}.container_16 .push_13{left:780px}.container_16 .push_14{left:840px}.container_16 .push_15{left:900px}.container_12 .pull_3,.container_16 .pull_4{left:-240px}.container_12 .pull_6,.container_16 .pull_8{left:-480px}.container_12 .pull_9,.container_16 .pull_12{left:-720px}.container_12 .pull_1{left:-80px}.container_12 .pull_2{left:-160px}.container_12 .pull_4{left:-320px}.container_12 .pull_5{left:-400px}.container_12 .pull_7{left:-560px}.container_12 .pull_8{left:-640px}.container_12 .pull_10{left:-800px}.container_12 .pull_11{left:-880px}.container_16 .pull_1{left:-60px}.container_16 .pull_2{left:-120px}.container_16 .pull_3{left:-180px}.container_16 .pull_5{left:-300px}.container_16 .pull_6{left:-360px}.container_16 .pull_7{left:-420px}.container_16 .pull_9{left:-540px}.container_16 .pull_10{left:-600px}.container_16 .pull_11{left:-660px}.container_16 .pull_13{left:-780px}.container_16 .pull_14{left:-840px}.container_16 .pull_15{left:-900px}.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}.clearfix:before,.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.clearfix:after{clear:both}.clearfix{zoom:1}
 
 
 
/** Grid Reset **/
 
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0}
 
 
 
/** Grid Text **/
 
body{font:13px/1.5 'Helvetica Neue',Arial,'Liberation Sans',FreeSans,sans-serif}a:focus{outline:1px dotted}hr{border:0 #ccc solid;border-top-width:1px;clear:both;height:0}h1{font-size:25px}h2{font-size:23px}h3{font-size:21px}h4{font-size:19px}h5{font-size:17px}h6{font-size:15px}ol{list-style:decimal}ul{list-style:disc}li{margin-left:30px}p,dl,hr,h1,h2,h3,h4,h5,h6,ol,ul,pre,table,address,fieldset{margin-bottom:20px}
 
 
 
/** Global Slider **/
 
#slider { position:relative; margin:0px 0px 0px -8px;}
 
#slides { padding:11px 10px 10px 11px;}
 
#slides ul, #slides ol {list-style:none;}
 
#slide-backs { position:absolute; background:url(../../image/theme/slide-backs.png) no-repeat; margin:0px; width:941px; height:365px; z-index:-100;}
 
.slides_container {width:919px; height:326px; overflow:hidden; position:relative;}
 
.pagination { position:absolute; margin:-20px 0px 0px 8px; z-index:1000;}
 
.pagination li {float:left;margin:0 1px;}
 
.pagination li a {
 
	display:block;
 
	width:12px;
 
	height:0;
 
	padding-top:12px;
 
	background-image:url(../../image/theme/pagination.png);
 
	background-position:0 0;
 
	float:left;
 
	overflow:hidden;
 
}
 
.pagination li.current a {background-position:0 -12px;}
 
.pagination li.current {background-image:url(../../image/theme/pagination.png); background-position:0 -12px; width:12px;}
 
 
 
/** Popup Page Slide **/
 
#pageslide-slide-wrap {
 
	background:url(../../image/theme/page.png) repeat-y #161616;
 
}
 
 
 
#pageslide-content h2 {
 
  color: #fff;
 
}
 
 
 
#pageslide-content a { 
 
  font-size:12px;
 
  padding:20px;
 
}
 
 
 
.pageslide-close {
 
}
 
 
 
/** Superfish Menu ----------------------------------------------------------------------------------------- **/
 
 
 
/*** ESSENTIAL STYLES ***/
 
.menu, .menu * {
 
	font-family: 'AlternateGothic2BTRegular';
 
	text-transform:uppercase;
 
	font-size:17px;
 
	font-weight:normal;
 
	margin:			0;
 
	padding:		0;
 
	list-style:		none;
 
	height:59px;
 
}
 
.menu {
 
	line-height:	3.5;
 
}
 
.menu ul {
 
	position:		absolute;
 
	top:			-999em;
 
	width:			10em; /* left offset of submenus need to match (see below) */
 
}
 
.menu ul li {
 
	width:			100%;
 
}
 
.menu li:hover {
 
	visibility:		inherit; /* fixes IE7 'sticky bug' */
 
}
 
 
 
.menu li:hover title {
 
	display:none;
 
}
 
.menu li {
 
	float:			left;
 
	position:		relative;
 
	min-width:80px;
 
	text-align:center;
 
}
 
.menu li li{
 
	text-align: left;
 
	border-bottom:1px solid #333;
 
	margin-left:0px;
 
}
 
.menu a {
 
	display:		block;
 
	position:		relative;
 
}
 
.menu li:hover ul,
 
.menu li.sfHover ul {
 
	left:			0;
 
	top:			3.4em; /* match top ul list item height */
 
	z-index:		99;
 
}
 
ul.menu li:hover li ul,
 
ul.menu li.sfHover li ul {
 
	top:			-999em;
 
}
 
ul.menu li li:hover ul,
 
ul.menu li li.sfHover ul {
 
	left:			10em; /* match ul width */
 
	top:			0;
 
}
 
ul.menu li li:hover li ul,
 
ul.menu li li.sfHover li ul {
 
	top:			-999em;
 
}
 
ul.menu li li li:hover ul,
 
ul.menu li li li.sfHover ul {
 
	left:			10em; /* match ul width */
 
	top:			0;
 
}
 
 
 
/*** DEMO SKIN ***/
 
.menu {
 
	float:			left;
 
	margin-bottom:	1em;
 
}
 
.menu a { /* çizgi buraya*/
 
	background:url(../../image/theme/dot-menu.png) no-repeat left center;
 
	padding: 		0em 1em;
 
	text-decoration:none;
 
}
 
.menu a, .menu a:visited  { /* visited pseudo selector so IE6 applies text colour*/
 
	color:			#6f6f6f;
 
}
 
.menu a:hover { /* visited pseudo selector so IE6 applies text colour*/
 
	color:			#f9f9f9;
 
}
 
.menu li {
 
	background:		#transparent;
 
}
 
.menu li li {
 
	background:		#2d2d2d;
 
}
 
.menu li li li {
 
	background:		#1a1a1a;
 
}
 
.menu li:hover, .menu li.sfHover,
 
.menu a:focus, .menu a:hover, .menu a:active {
 
	background:		#000 url(../../image/theme/menu-hover.png) repeat-x;
 
	outline:		0;
 
}
 
 
 
/*** arrows **/
 
.menu a.sf-with-ul {
 
	padding-right: 	1.75em;
 
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
 
}
 
.sf-sub-indicator {
 
	position:		absolute;
 
	display:		block;
 
	right:			.75em;
 
	top:			1.05em; /* IE6 only */
 
	width:			10px;
 
	height:			10px;
 
	text-indent: 	-999em;
 
	overflow:		hidden;
 
	background:		url('../../image/theme/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
 
}
 
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
 
	top:			1.2em;
 
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
 
}
 
/* apply hovers to modern browsers */
 
a:focus > .sf-sub-indicator,
 
a:hover > .sf-sub-indicator,
 
a:active > .sf-sub-indicator,
 
li:hover > a > .sf-sub-indicator,
 
li.sfHover > a > .sf-sub-indicator {
 
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
 
}
 
 
 
/* point right for anchors in subs */
 
.menu ul .sf-sub-indicator { background-position:  -10px 0; }
 
.menu ul a > .sf-sub-indicator { background-position:  0 0; }
 
/* apply hovers to modern browsers */
 
.menu ul a:focus > .sf-sub-indicator,
 
.menu ul a:hover > .sf-sub-indicator,
 
.menu ul a:active > .sf-sub-indicator,
 
.menu ul li:hover > a > .sf-sub-indicator,
 
.menu ul li.sfHover > a > .sf-sub-indicator {
 
	background-position: -10px 0; /* arrow hovers for modern browsers*/
 
}
 
 
 
/*** shadows for all but IE6 ***/
 
.sf-shadow ul {
 
	padding: 0 8px 9px 0;
 
	-moz-border-radius-bottomleft: 17px;
 
	-moz-border-radius-topright: 17px;
 
	-webkit-border-top-right-radius: 17px;
 
	-webkit-border-bottom-left-radius: 17px;
 
}
 
.sf-shadow ul.sf-shadow-off {
 
	background: transparent;
 
}
 
 
 
/** Tab Menu **/
 
.tabbed_content {
 
	width: 460px;	
 
}
 
 
 
.tabs {
 
	height: 62px;
 
	position: relative;
 
}
 
 
 
.tabs .moving_bg {
 
	padding: 15px;
 
	background: url(../../image/theme/arrow.png) no-repeat;
 
	height:6px;
 
	margin:37px 0px 0px 20px;
 
	position: absolute;
 
	color:#000;
 
	z-index: 190;
 
	left: 0;
 
}
 
 
 
.tab_item {
 
	font-family: 'AgentConDBNormal'; font-weight:normal; font-size:15px;
 
	background: url(../../image/theme/middle-button-right.png) right no-repeat;
 
	width:40px; height:32px;
 
	float: left;
 
	padding:12px 4px 0px 0px;
 
	margin-right:14px;
 
	margin-left:6px;
 
	color: #808080;
 
	text-align: center;
 
	z-index: 200;
 
	position: relative;
 
	cursor: pointer;
 
}
 
 
 
.tabs-right { background: url(../../image/theme/midle-button-left.png) no-repeat left; float:left; width:5px; height:32px; margin:-6px 0px 0px -5px;}
 
 
 
.tabbed_content .slide_content {
 
	overflow: hidden;
 
	position: relative;
 
	width: 480px;
 
	margin-left:-28px;
 
}
 
 
 
.tabslider {
 
	width: 5000px;
 
}
 
 
 
.tabslider ul {
 
	float: left;
 
	width: 460px;
 
	margin: 0px;
 
	padding: 0px;
 
	margin-right:20px;
 
 
 
}
 
 
 
.tabslider ul a {
 
 
 
}
 
 
 
.tabslider ul a:hover {
 
 
 
}
 
 
 
.tabslider ul li {
 
	padding-bottom: 7px;
 
}
 
 
 
/** Carusel Slider **/
 
 
 
.jcarousel-skin-tango .jcarousel-container {
 
    -moz-border-radius: 10px;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-direction-rtl {
 
	direction: rtl;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-container-horizontal {
 
    width: 940px;
 
	padding-top:37px;
 
	padding-left:1px;
 
}
 
 
 
 
 
.jcarousel-skin-tango .jcarousel-item {
 
    width: 147px;
 
    height: 147px;
 
	background-color:#f5f5f5;
 
	padding:10px;
 
	border:1px solid #dcdcdc;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-item-horizontal {
 
	margin-left: 0;
 
    margin-right: 23px;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-item-horizontal {
 
	margin-left: 10px;
 
    margin-right: 0;
 
}
 
 
 
 
 
.jcarousel-skin-tango .jcarousel-item-placeholder {
 
    background: #fff;
 
    color: #000;
 
}
 
 
 
/**
 
 *  Horizontal Buttons
 
 */
 
.jcarousel-skin-tango .jcarousel-next-horizontal {
 
    position: absolute;
 
    top:-64px;
 
    right: 2px;
 
    width: 32px;
 
    height: 32px;
 
    cursor: pointer;
 
    background: transparent url(../../image/theme/next-horizontal.png) no-repeat 0 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-next-horizontal {
 
    left: 5px;
 
    right: auto;
 
    background-image: url(../../image/theme/prev-horizontal.png);
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-next-horizontal:hover {
 
    background-position: -32px 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-next-horizontal:active {
 
    background-position: -64px 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal,
 
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:hover,
 
.jcarousel-skin-tango .jcarousel-next-disabled-horizontal:active {
 
    cursor: default;
 
    background-position: -96px 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-prev-horizontal {
 
    position: absolute;
 
    top:-64px;
 
    left: 882px;
 
    width: 32px;
 
    height: 32px;
 
    cursor: pointer;
 
    background: transparent url(../../image/theme/prev-horizontal.png) no-repeat 0 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-direction-rtl .jcarousel-prev-horizontal {
 
    left: auto;
 
    right: 5px;
 
    background-image: url(../../image/theme/next-horizontal.png);
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-prev-horizontal:hover {
 
    background-position: -32px 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-prev-horizontal:active {
 
    background-position: -64px 0;
 
}
 
 
 
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal,
 
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:hover,
 
.jcarousel-skin-tango .jcarousel-prev-disabled-horizontal:active {
 
    cursor: default;
 
    background-position: -96px 0;
 
}
bond70 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 05/11/2011, 23h44   #4
Modérateur
 
Avatar de kaiser59
 
Inscription : novembre 2005
Messages : 1 246
Détails du profil
Informations personnelles :
Âge : 32

Informations forums :
Inscription : novembre 2005
Messages : 1 246
Points : 1 203
Points : 1 203
Envoyer un message via MSN à kaiser59
Salut,

Ton code php génère un code mal écrit en gros quand tu regardes la source dans ton IN A TWEET cela donne ceci :

Code html :
<h1>In a Tweet</h1><div id="widget_twitter_vjck" ><ul><div id="twitter_profile" style="height: 52px;" ><div class="twitter_img_box" style="float:left; height:48px; margin-right:1em;margin-left:10px;" ><img border="0" src="http://a2.twimg.com/profile_images/237344667/Lincoln_normal.jpg" /></div><div class="twitter_name_box" ><a href="http://twitter.com/LincolnLeads" target="_blank">Lincoln Smith</a> </div><div class="twitter_location_box" >Sydney, Australia</div></div><div class="twitter_description" style="padding-bottom:2px; border-bottom:1px dotted #DDD;" ></div><div id="twitter_time_line"  style="width:100%; overflow:hidden;" ><script type="text/javascript">function flip_twitter_image(arg) {var targetTagID = window.document.getElementById(arg); var styleStr = (window.document.documentElement.getAttribute("style") == window.document.documentElement.style) ? targetTagID.style.cssText : targetTagID.getAttribute( "style" ); var nonString = styleStr.match( /display:.*?none;/g ); var nonPos = nonString ? styleStr.indexOf( nonString ) : -1; if( nonPos >= 0 ) { styleStr = styleStr.substring( 0, nonPos ) + styleStr.substring( nonPos + nonString.length, styleStr.length ); styleStr = styleStr + "display:block;"; }else{ var blkString = styleStr.match( /display:.*?block;/g ); var blkPos = blkString ? styleStr.indexOf( blkString ) : -1; if( blkPos >= 0 ) { styleStr = styleStr.substring( 0, blkPos ) + styleStr.substring( blkPos + blkString.length, styleStr.length ); } styleStr = styleStr + "display:none;"; } if( styleStr ) { if( window.document.documentElement.getAttribute("style") == window.document.documentElement.style ) { targetTagID.style.cssText = styleStr; }else{ targetTagID.setAttribute( "style", styleStr); }}}</script><li><a href="http://twitter.com/search?q=%23LiesThatAlwaysWorked" target="_blank" >#LiesThatAlwaysWorked</a> the cheque is in the post...</li><li>@AndreasPhotiou<br />Thanks. I'm changing all that you mention. Uploaded a new theme and now in the process of repairing. I'll get to work!</li><li>Looking for someone to comment on the changes I can make to  - I know a lot that need to happen already...<br /><a href="http://t.co/TiiDvf76" target="_blank" >http://t.co/TiiDvf76</a></li><li>Sydney Private High School tuition starting at just $0.99... Innovative marketing and an innovative school <br /><a href="http://t.co/CQTdDnpF" target="_blank" >http://t.co/CQTdDnpF</a></li><li>One of Sydney's Private High Schools is selling tuition on eBay - now that's what I call innovation. <br /><a href="http://t.co/oYB7uYOr" target="_blank" >http://t.co/oYB7uYOr</a></li></div></ul></div><!-- cached -->    </div>

des div entres les ul et li ce n'est sémantiquement pas correct dans une liste
liste
__________________
Ne dites pas Java pour dire Javascript ! Ces deux codes n'ont rien à voir ! // Essayez d'expliquer, de la façon la plus claire possible votre problème. // Parfois une image vaut mieux qu'un long discours

FAQ ASP
kaiser59 est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 12h59.


 
 
 
 
Partenaires

Hébergement Web