Plaatje wil niet transparant zijn terwijl hij dat wel is

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Kees van Norde

Kees van Norde

29/07/2014 14:59:33
Quote Anchor link
Hoi,

Ik krijg het maar niet voor elkaar om de prullenbak (zie screen) in transparant te krijgen, je ziet er nu een wit vlak omheen.
Zie hier een screenshot van de prullenbak:
Afbeelding
Echter is het plaatje zelf wel gewoon transparant (zie LINK).

De code die gebruikt wordt is:
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
<input type='image' ".IMAGE_admin_delete." name='delete_{$post_info['thread_id']}' value='thread_action' onclick=\"return confirm_('{$type}', {$forum_id}, {$thread_id},
'{$post_info['user_name']}')\" />

Iemand enig idee wat ik fout doe?
Gewijzigd op 29/07/2014 15:00:47 door Kees van Norde
 
PHP hulp

PHP hulp

25/04/2024 06:48:53
 
Frank Nietbelangrijk

Frank Nietbelangrijk

29/07/2014 15:09:59
Quote Anchor link
Geen idee maar ik weet wel een 'work around'. Gewoon de afbeeling als image weergeven en met javascript een click event er op waarop het formulier verstuurd wordt
 
Erwin H

Erwin H

29/07/2014 15:10:07
Quote Anchor link
Ten eerste is je plaatje NIET transparant, er staan witte pixels omheen. Ten tweede is je witte vlak op het screenshot veel groter dan het plaatje, dus dat zal denk ik in je css zitten, niet zozeer in het wel of niet transparant zijn van je plaatje.
 
E vH

E vH

29/07/2014 15:12:25
Quote Anchor link
Ik sluit mij aan bij Erwin.
Lijkt mij een CSS issue en ook ik zie in het originele plaatje een rand met witte pixels....
 
Kees van Norde

Kees van Norde

29/07/2014 15:41:08
Quote Anchor link
Ik bedoelde eigenlijk dat er niet zo'n dikke rand omheen hoort te zitten, dus alles eromheen transparant hoort te zijn.
Dat het een paar kleine witte pixels bevat zou kunnen, maar de link die ik gestuurd had is een heel stuk beter dan de screenshot die ik aangaf.

Ik zal iets meer code posten misschien hebben jullie er wat aan, het zou een css probleem kunnen zijn maar waarom doen de andere plaatjes het dan wel goed?
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
    $ret .= "
        <div>
        <a href='".e_PLUGIN."forum/forum_post.php?edit.{$post_info['thread_id']}.{$topic_from}'>".IMAGE_admin_edit."</a>
<input type='image' ".IMAGE_admin_delete." name='delete_{$post_info['thread_id']}' value='thread_action' onclick=\"return confirm_('{$type}', {$forum_id}, {$thread_id}, '{$post_info['user_name']}')\" />
        <input type='hidden' name='e-token' value='".e_TOKEN."' />
        ";

Is de regel van:
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<input type='image' ".IMAGE_admin_delete." name='delete_{$post_info['thread_id']}' value='thread_action' onclick=\"return confirm_('{$type}', {$forum_id}, {$thread_id}, '{$post_info['user_name']}')\" />
niet anders te maken (net zo'n idee als de andere plaatjes) zodat je die witte rand niet krijgt?
 
Erwin H

Erwin H

29/07/2014 15:43:49
Quote Anchor link
Dit is allemaal niet relevant. Het gaat om de css.
 
Kees van Norde

Kees van Norde

29/07/2014 15:48:32
Quote Anchor link
Hmm nu kan ik de css wel posten maar ik vraag me af of dat niet teveel is (ik wil niet spammen).
Echter zou ik totaal niet weten waar ik moet kijken in de css.
Ik post hem daarom toch maar, mocht dat niet toegestaan zijn verwijder het dan maar weer en dan daarvoor mijn excuses.

Hoe kan ik er anders zelf achter komen?
Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,time,mark,audio,video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

ol,ul {
    list-style:none;
}

blockquote,q {
    quotes:none;
}

blockquote:before,blockquote:after,q:before,q:after {
    content:'';
    content:none;
}

ins {
    text-decoration:none;
}

del {
    text-decoration:line-through;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

audio[controls], canvas, video {
    display:inline-block;
    *display:inline;
    *zoom:1;
}

    
/*-  BASE STYLES
----------------------------------------------------------------------*/
html {
    height:100%;
    font-size:100%;
    overflow-y:scroll;
}

body {
    width:90%;
    max-width:1209px;
    margin:0 auto;
    padding:0 0.792864%;
    color:#222;
    min-height:100%;
    overflow:hidden;
    font-family:calibri, helvetica, arial, sans-serif;
    font-size:0.875em;
    _font-size:0.875em;
}

a {
    -moz-transition:color .3s linear;
    -o-transition:color .3s linear;
    -webkit-transition:color .3s linear;
    transition:color .3s linear;
    text-decoration:none;
}

a:visited {
    opacity:0.7;
}

a:hover {
    text-decoration:underline;
}

a:active,a:focus {
    position:relative;
    top:1px;
}

#footer a {
    color:#fff;
}

img, object, embed, video {
    max-width:100%;
    height:auto;
    _width:100%;
}

img {
    height:auto;
    font-style:italic;
    color:#c00;
    border: 0;
    -ms-interpolation-mode:bicubic; /* Improve IE's resizing of images: css-tricks.com/ie-fix-bicubic-scaling-for-images */
}

svg:not(:root) {
    overflow:hidden; /* Corrects overflow displayed oddly in IE9 */
}

img.left {
    margin:0 20px 0 0;
}

img.right {
    margin:0 0 0 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin:.8em 0;
}

.video-container iframe,.video-container object,.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*-  LISTS
----------------------------------------------------------------------*/
ul,ol {
    list-style-position:inside;
    padding:0;
}

li ul,li ol {
    margin:0 1.625em;
}

dl dd {
    margin-left:1.625em;
}

.menu ul li,#tabmenu ul li {
    padding:5px 0;
}

ul.socialIcons {
    float:left;
    margin:8px 1.585728%;
    padding:0;
}

ul.socialIcons li {
    display:inline;
    margin-right:.8em;
}

    
/*-  TYPE
----------------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
    font-family: 'PT Sans', calibri, helvetica, sans-serif;
}

h1 {
    font-size:2em;
    margin-bottom:16px;
    line-height:1.5;
    color:#898989;
}

h2 {
    font-size:1.5em;
    margin-bottom:16px;
    line-height:1;
    color:#363636;
}

h3 {
    font-size:1.25em;
    margin-bottom:16px;
    line-height:1.2;
}

h4 {
    font-size:1.125em;
    margin-bottom:16px;
    line-height:1.333;
}

h5 {
    font-weight:bold;
}

h5,h6 {
    font-size:1em;
    margin-bottom:16px;
    line-height:1.5;
}

p {
    margin-bottom:1.5em;
}

p,.menucontent,.pagecontent,.postcontent {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}

small {
    font-size:0.875em;
    margin:0 0 2.6em;
}

.pagecontent h1,.pagecontent h2,.pagecontent h3,.pagecontent h4,.pagecontent h5,.pagecontent h6 {
    padding-top:1em;
}

    
/*-  MAIN
----------------------------------------------------------------------*/
#header {
    float:left;
    width:98.414272%;
    padding:10px 0.792864% 0 0.792864%;
}

#topbar {
    float:left;
    width:98.414272%;
    margin:8px 0.792864% 0 0.792864%;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

#content,#content2 {
    float:left;
    width:100%;
    margin:0;
    padding:16px 0;
}

#footer {
    clear:both;
    float:left;
    width:98.414272%;
    margin:0 .792864% 16px;
    padding:16px 0;
    font-size:.929em;
    color:#fff;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.lCol,.lCol2,.lCol3,.tCol,.mCol,.rCol,.rCol2,.bCol,.fCol1,.fCol2,.fCol3,.banner {
    float:left;
    margin:0 0.805639% 0;
}

.lCol {
    width:41.289023%;
}

.lCol2 {
    width:66.3715996%;
}

.lCol3 {
    width:98.388722%;
}

.mCol {
    width:23.6656596%;
}

.rCol,.rCol2 {
    float:right;
    width:30.2114804%;
}

.tCol,.bCol,.banner{
    clear:right;
    float:right;
    width:55.488419%;
}

.fCol1 {
    float:left;
    width:43.6%;
    margin:0 1.8188331% 0;
}
    
.fCol2 {
    float:left;
    width:22.7%;
    margin:0 1.8188331% 0;
}
    
.fCol3 {
    clear:left;
    display:block;
    width:96.3623338%;
    margin:16px 1.8188331% 0;
}


/*-  LOGO
----------------------------------------------------------------------*/
#title {
    float:left;
    margin:0;
    padding:0;
    height:0;
    text-indent:-9999px;
}

#logo {
    float:left;
    padding:0;
    margin-top:10px;
    max-width:50%;
}


/*-  NAVIGATION
----------------------------------------------------------------------*/
.nav {
    float:left;
    width:100%;
    margin-top:15px;
    text-shadow:0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.nav ul {
    width:100%;
    margin:0;
}

.nav ul li {
    display:inline;
    margin:0;
}

.nav ul li a {
    display:inline-block;
    padding:10px 1.510574% 9px;
    margin:0;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

.nav ul li a:hover {
    color:#fff;
    text-decoration:underline;
}

.nav ul li.current a {
    background:rgba(255,255,255,0.2);
}

.nav ul li.current a:hover {
    text-decoration:none;
}

ul.secondary li a {
    display:inline-block;
    padding:0;
    margin:10px 1.611279% 12px;
    font-size:.858em;
    font-weight:700;
    color:#fff;
    text-decoration:none;
}

ul.secondary li.current a {
    background:transparent;
    text-decoration:underline;
}

ul.fSitelinks {
    float:left;
    width:46.666666%;
    margin-right:3.333333%;
    margin-bottom:16px;
}


/*-  MENU STYLES
----------------------------------------------------------------------*/
.mCol .menu {
    padding:10px 4.255319%;
    margin-bottom:1em;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.mCol .menu h3,.bCol .menu h3 {
    font-size:1.143em;
    line-height:1.5em;
    margin-bottom:0.725em;
    text-shadow:0 1px 1px rgba(255,255,255,.8);
}

.tCol .menu,.rCol .menu,.lCol .menu,.lCol2 .menu,.lCol3 .menu {
    margin-bottom:1em;
}

.tCol .menu h3,.rCol .menu h3,.lCol .menu h3,.lCol2 .menu h3,.lCol3 .menu h3,.fCol1 .menu h3,.fCol2 .menu h3 {
    clear:both;
    display: block;
    font-size: 1.143em;
    line-height:2.1em;
    margin-bottom:0.425em;
    padding-left: 3.333333%;
    color:#fff;
    text-shadow:0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.fCol1 .menu h3,.fCol2 .menu h3 {
    background-image:-ms-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-moz-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-o-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0,0,0,0.1)), color-stop(0.5, rgba(0,0,0,0.1)), color-stop(0.5, rgba(255,255,255,0.1)), color-stop(1, rgba(255,255,255,0.1)));
    background-image:-webkit-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
}

.tCol .menu .menucontent,.rCol .menu .menucontent,.lCol .menu .menucontent,.lCol2 .menu .menucontent,.lCol3 .menu .menucontent {
    display:block;
    background:#fff;
    padding: 10px 3.333333%;
    margin-bottom:0.625em;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.bCol .menu {
    background:#fff;
    padding:10px 2%;
    margin-bottom:1em;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.fCol1 .menu .menucontent,.fCol2 .menu .menucontent {
    padding:10px 3.333333%;
}

.page {
    float:left;
    width:91.4%;
    background:#fff;
    padding:16px 4.255319%;
    margin-bottom:1em;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

h2.pagetitle {
    font-size:1.8em;
}

.pagecontent {
    padding:20px 0;
}

.rCol2 .menu {
    padding:10px 4.255319%;
    margin-bottom:1em;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.rCol2 .menu h3 {
    font-size:1.143em;
    line-height:1.5em;
    margin-bottom:0.525em;
    text-shadow:0 1px 1px rgba(255,255,255,.8);
}

.banner {
    text-align:right;
    margin-bottom:1em;
}

.ads {
    width:100%;
    text-align:center;
    margin-bottom:1em;
}


/*-  POST STYLES
----------------------------------------------------------------------*/
.post {
    clear:both;
    display:block;
    float:left;
    background:#fff;
    width:96.097562%;
    padding:10px 1.951219%;
    margin-bottom:.8em;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.post h2 {
    font-size:1.429em;
    margin-bottom:0.625em;
}

.postimg {
    float:left;
    background:#fff;
    width:29.2682927%;
    padding:0.731707%;
    margin:0 1em 0.3em 0;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
}

.postimg img {
    -webkit-border-radius:.2em;
    -moz-border-radius:.2em;
    border-radius:.2em;
}

.postinfo {
    float:left;
    width:96.4%;
    padding:4px 1.8%;
    margin:0 0 8px;
    font-size:0.845em;
    color:#898989;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.postcontent p {
    margin-bottom:0.7em;
}

.lCol2 .post h2 {
    font-size:1.858em;
    margin-bottom:0.725em;
}

.lCol2 .postimg {
    width:39.2682927%;
    padding:0.731707%;
    margin:0 1em 0.3em 0;
}

a.news_extendstring:after {
    content: ' ';
}

.oNews,.newscat {
    display:block;
    float:left;
    width:100%;
    margin-bottom:1.4em;
}

.oNews h4 {
    font-size:1em;
    margin-bottom:0;
}

.newscat h4 {
    margin-bottom:.333em;
}

.newscatthumb,.othernews_image {
    float:left;
    background:#fff;
    width:26%;
    padding:1.731707%;
    margin:0 1em 0.3em 0;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
}

.othernews_image {
    width:33.333%;
}


/*-  BUTTONS
----------------------------------------------------------------------*/
.button,.commentform input.button,a.news-extended-older,a.news-extended-newer,a.news-extended-category-link,a.news-extended-overview-link {
    outline:none;
    color:#fff;
    text-shadow:0 -1px 0 #262626;
    padding:4px 10px 5px;
    font:700 1.143em/100% Calibri, Arial, Helvetica, sans-serif;
    margin:0;
    -moz-border-radius:.3em;
    -webkit-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
}

.button::-moz-focus-inner,.commentform input.button::-moz-focus-inner,a.news-extended-older::-moz-focus-inner,a.news-extended-newer::-moz-focus-inner,a.news-extended-category-link::-moz-focus-inner,a.news-extended-overview-link::-moz-focus-inner {
    padding:0;
    border:0;
}

.button:hover,.commentform input.button:hover,a.news-extended-older:hover,a.news-extended-newer:hover,a.news-extended-category-link:hover,a.news-extended-overview-link:hover,.button:focus,.commentform input.button:focus,a.news-extended-older:focus,a.news-extended-newer:focus,a.news-extended-category-link:focus,a.news-extended-overview-link:focus {
    cursor:pointer;
    color:#fff;
    text-shadow:0 1px 0 #262626;
    -webkit-box-shadow:0 -.215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 -.215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 -.215em .429em rgba(0, 0, 0, 0.2);
}

.button:active,.commentform input.button:active,a.news-extended-older:active,a.news-extended-newer:active,a.news-extended-category-link:active,a.news-extended-overview-link:active {
    position:relative;
    top:1px;
}

a.news-extended-category-link,a.news-extended-overview-link,a.news-extended-older,a.news-extended-newer {
    position:relative;
    font-size:1em;
}

a.news-extended-category-link,a.news-extended-overview-link {
    top:20px;
}

a.news-extended-older,a.news-extended-newer {
    top:40px;
}

a.news-extended-category-link:active,a.news-extended-overview-link:active,a.news-extended-category-link:focus,a.news-extended-overview-link:focus {
    top:21px;
}

a.news-extended-older:active,a.news-extended-newer:active,a.news-extended-older:focus,a.news-extended-newer:focus {
    top:41px;
}


/*-  FORMS
----------------------------------------------------------------------*/
textarea {
    overflow:auto;
    vertical-align:top;
}

textarea,.helpbox,input {
    background:#fff;
    width:auto;
    padding:8px;
    border:1px solid #dcdcdc;
    font-family:calibri, helvetica, arial, sans-serif;
    color:#898989;
    margin-top:5px;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.1);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.1);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.1);
}

div#default input {
    width:60%;
}

div#default input.button {
    width:auto;
}

.helpbox {
    width:100%;
}

div.code-box,code {
    font-size:.929em;
    color:#898989;
    -webkit-text-size-adjust:140%;
    font-family:Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

blockquote,.blockquote,.indent {
    quotes:none;
    font:.929em Georgia,"Times New Roman",Times,serif;
    font-style:italic;
    padding:20px 20px 15px 15px !important;
    border:1px solid #dcdcdc;
    background-color:transparent !important;
    margin-top:5px !important;
    margin-bottom:15px !important;
    margin-left:10px !important;
    margin-right:10px !important;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
}

.indent2 {
    border:1px solid #dcdcdc;
    background-color:#fff;
}

.indent2 a {
    color:#000;
}

div.code-box ol {
    margin:0;
    padding:0 10px;
}

div.code_highlight {
    white-space:normal;
}

pre {
    font-family:"Courier 10 Pitch",Courier,monospace;
    font-size:.929em;
    color:#898989;
    line-height:1em;
    margin:5px 10px 15px 10px;
    padding:1.5em;
}


/*-  OTHER STYLES
----------------------------------------------------------------------*/
ins, mark {
    text-decoration:none;
}

mark {
    background:#ff0;
}

ins {
    background:#ff9;
}

del {
    text-decoration:line-through;
}

strong, b, dt {
    font-weight:bold;
}

dfn {
    font-style:italic;
}

var, address {
    font-style:normal;
}

sub, sup {
    font-size:0.625em;
    line-height:0;
    position:relative;
    vertical-align:baseline;
}

sup {
    top:-0.5em;
}

sub {
    bottom:-0.25em;
}

.clear{
    clear:both;
    height:0;
    visibility:hidden;
    display:block;
}

.fleft {
    float:left;
}

.fright {
    float:right;
}

.page table {
    text-align:left;
    margin:0 -1px 24px 0;
    width:100%;
}

.page tr th,.page thead th {
    color:#444;
    font-size:0.929em;
    font-weight:700;
    line-height:1.358em;
    padding:9px 24px;
}

.page tr td {
    padding:6px 24px;
}

.pagecontent tr:nth-of-type(even),.postcontent tr:nth-of-type(even) {
    background: #f3f3f3;
}

#dataform tr:nth-of-type(even) {
    background:#fff;
}

div#default {
    max-width:100%;
}


/* SEARCH
----------------------------------------------------------------------------------------------------*/
.searchForm {
    float:right;
    margin:20px 0;
    padding:8px 1%;
    width:40%;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.searchForm input#q {
    float:left;
    width:72%;
    border:1px solid #dcdcdc;
    padding:5px;
    margin:0;
    font-size:1.143em;
    font-weight:400;
    color:#dcdcdc;
    -moz-border-radius:.3em;
    -webkit-border-radius:.3em;
    border-radius:.3em;
}

.searchForm input.button {
    float:right;
    width:22%;
    margin:0;
    padding:5px 10px 6px;
}


/*-  COMMENTS
----------------------------------------------------------------------------------------------------*/
#dataform {
    text-align:left;
}

#dataform input.comment {
    width:82%;
}

#commentform input,#commentform .tbox {
    padding:5px 10px;
    border:1px solid #dcdcdc;
    color:#222;
    width:96%;
}

input#helpb.helpbox {
    float:left;
    margin:2px 0;
    background:transparent;
    border:0;
    font-size:0.9em;
    text-align: left;
}

.commentwrap {
    float:left;
    margin:10px 0;
    width:100%;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.comment {
    padding:10px;
}

.comment b {
    font-size:1.143em;
    margin-bottom:1.4em;
}

.comdate {
    float:right;
    font-size:.858em;
    color:#898989;
}

.comreply {
    float:right;
    padding:8px 0;
}


/*-  NEXTPREV
----------------------------------------------------------------------*/
.nextprev{
    clear: both;
    display:block;
    float:left;
    background:#fff;
    width:96.097562%;
    padding:8px 1.951219% 5px 1.951219%;
    margin-top:-0.8em;
    margin-bottom:2.5em;
    font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;
    min-height:30px;
    font-size:0.75em;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.nextprev_link{
    background:url(images/numbers_spritesheet.png) no-repeat;
    display:block;
    float:left;
    width:28px;
    height:27px;
    text-decoration:none;
    text-align:center;
    line-height:26px;
    margin-right:3px;
    font-weight:bold;
    background-position:0 0;
    color:#717171;
    text-shadow:1px 1px 0 #fff;}

.nextprev a,.nextprev span {
    background:url(images/numbers_spritesheet.png) no-repeat;
    display:block;
    float:left;
    width:28px;
    height:27px;
    text-decoration:none;
    text-align:center;
    line-height:26px;
    margin-right:3px;
    font-weight:bold;
    background-position:0 0;
    color:#717171;
    text-shadow:1px 1px 0 #fff;
}

.nextprev a:hover{
    background-position:0 -27px;
}

.nextprev span.nextprev_current{
    text-shadow:0 1px 0 #585858;
    color:#fff;
    background-position:-140px 0;
}

.nextprev a:active {
    margin-top:1px;
}


/*-  NEWS SOCIAL BUTTONS
----------------------------------------------------------------------*/
.social-containter {
    width:100%;
    vertical-align:top;
    float:left;
    margin:45px 0 15px;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.social-buttons {
    float:left;
    vertical-align:top;
    padding:10px;
}

.social-button {
    padding:0 3px;
    float:left;
    text-align:center;
}

.social-text {
    padding:10px;
}


/*-  LOGIN
----------------------------------------------------------------------*/
.topnav {
    float:right;
    margin:8px 1.585728%;
}

.topnav a {
    margin-left:20px;
    color:#fff;
    font-weight:600;
}

#signin_menu {
    width:40%;
    padding:3.333%;
    margin:20px auto;
    border:1px solid #d2d2d2;
    -moz-border-radius:.3em;
    -webkit-border-radius:.3em;
    border-radius:.3em;
}

#signin_menu input[type=text], #signin_menu input[type=password] {
    display:block;
    margin:0 0 5px;
    width:93.4%;
}

#signin_menu p {
    margin:0;
    padding-bottom:0;
}

#signin_menu label {
    font-weight:normal;
}

#signin_menu p.remember {
    padding:10px 0;
}

#signin_menu p.forgot, #signin_menu p.complete {
    clear:both;
    margin:5px 0;
}

#signin_menu img {
    margin-right:4px;
}

p.captcha input {
    max-width:100px;
}


/*-  DYNAMIC SLIDER
----------------------------------------------------------------------*/
.blueberry {
    background:#fff;
    margin:0 auto 1.5em auto;
    padding:0.731707%;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -webkit-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    -moz-box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    box-shadow:0 .215em .429em rgba(0, 0, 0, 0.2);
    overflow:hidden;
}

.blueberry .slides {
    display:block;
    position:relative;
    overflow:hidden;    
    -webkit-border-radius:.2em;
    -moz-border-radius:.2em;
    border-radius:.2em;
}

.blueberry .slides li {
    position:absolute;
    top:0;
    left:0;
    overflow:hidden;
}

.blueberry .slides li img {
    display: block;
    width: 100%;
    max-width: none;
}

.blueberry .slides li.active {
    display: block;
    position: relative;
}

.blueberry .crop li img {
    width: auto;
}

.blueberry .pager {
    height: 30px;
    text-align: center;
}

.blueberry .pager li {
    display: inline-block;
}

.blueberry .pager li a,.blueberry .pager li a span {
    display: block;
    height: 4px;
    width: 4px;
}

.blueberry .pager li a {
    outline:none;
    padding:15px 8px;
    -webkit-border-radius:6px;
   -moz-border-radius:6px;
    border-radius:6px;
}

.blueberry .pager li a span {
    background:#c0c0c0;
    text-indent:-9999px;
    -webkit-border-radius:2px;
   -moz-border-radius:2px;
    border-radius:2px;
}

.blueberry .pager li.active a span {
    background: #404040;
}

.blueberry .slidecaption {
    position:absolute;
    width:100%;
    left:0;
    bottom:0;
    padding: 1em 0;
    color:#fff;
    background:#111;
    opacity:.8;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.blueberry .slidecaption p {
    font-size:1.286em;
    color:#fff;
    margin:0 16px 0.35em;
    text-shadow:0 2px 2px rgba(0,0,0,.9);
}

.blueberry img a:active,a:focus {
    position:relative;
    top:0;
}

.blueberry a:hover {
    text-decoration:none;
}


/*-  TABBED MENU
----------------------------------------------------------------------*/
#tabmenu{
    margin:0 0 1em 0;
    width:100%;
}

#tabmenu ul{
    list-style:none;
    list-style-position:outside;
}

#tabmenu ul.tabmenu li{
    float:left;
    display:block;
    line-height:2.1em;
    padding:0 1.512859%;
    margin-right:5px;
    margin-bottom:-1px;
    position:relative;
    cursor:pointer;
    font-size:1.143em;
    font-weight:700;
    color:#fff;
    border-width:1px 1px 1px 1px;
    text-shadow:0 1px 1px rgba(0,0,0,.3);
    background-image:-ms-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-moz-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-o-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:-webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0,0,0,0.1)), color-stop(0.5, rgba(0,0,0,0.1)), color-stop(0.5, rgba(255,255,255,0.1)), color-stop(1, rgba(255,255,255,0.1)));
    background-image:-webkit-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    background-image:linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 100%);
    -webkit-border-top-left-radius:.3em;
    -webkit-border-top-right-radius:.3em;
    -moz-border-radius-topleft:.3em;
    -moz-border-radius-topright:.3em;
    border-top-left-radius:.3em;
    border-top-right-radius:.3em;
}

#tabmenu ul.tabmenu li.active{
    background:#fff;
    padding:0 1.512859% 1px;
    border:1px solid #dcdcdc;
    border-bottom:0;
    text-shadow:0 0 0 #fff;
    z-index:1;
}

.tabcontent{
    background:#fff;
    margin:0 auto;
    text-align:left;
    padding:10px 1.512859%;
    padding-bottom:20px;
    margin-bottom:0.625em;
    border:1px solid #dcdcdc;
    -webkit-border-radius:.3em;
    -webkit-border-top-left-radius:0;
    -moz-border-radius:.3em;
    -moz-border-radius-topleft:0;
    border-radius:.3em;
    border-top-left-radius:0;
}

.tabcontent.tab1{
    display:block;
}

.tabcontent.tab2,.tabcontent.tab3{
    display:none;
}


/* NEWS ACCORDIAN  *** DO NOT EDIT - You have been warned! ***
----------------------------------------------------------------------------------------------------*/
h4.acc_trigger {
    background:#363636 url(images/acc_open.png) no-repeat 96% 50%;
    padding:0 0 0 16px;
    cursor:pointer;
    clear:both;
    display: block;
    font-size: 1.072em;
    line-height:2.1em;
    margin-bottom:0.425em;
    color:#fff;
    text-shadow:0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
    -moz-transition:background .2s linear;
    -o-transition:background .2s linear;
    -webkit-transition:background .2s linear;
    transition:background .2s linear;
}

h4.acc_trigger:hover {
    background-color:#898989;
}

h4.acc_trigger a {
    text-decoration:none;
    display:block;
    padding:0;
    color:#363636;
}

h4.active {
    background:#898989 url(images/acc_close.png) no-repeat 96% 50%;
    cursor:pointer;
}

.acc_container {
    margin:0 3.333% 5px 3.333%;
    padding:0;
    overflow:hidden;
    clear:both;
}

.acc_container .block {
    padding:0 0 10px 0;
}

.accordian {
    padding-bottom:0;
}


/* FORUM STYLES
----------------------------------------------------------------------------------------------------*/
.fborder {
    margin:0;
    padding:0;
}

.fborder2 {
    border:1px solid #dcdcdc;
    margin:6px;
    padding:4px;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.fcaption {
    font-weight:700;
    padding:6px;
}

.avatar {
    font-size:1.143em;
    font-weight:700;
    margin:0;
    padding:10px;
}

.forumheader {
background:#e0e0e0;
    font-size:1.143em;
    font-weight:700;
    margin:0;
    padding:10px;
}

.forumheader2,.forumheader4 {
background:#f3f3f3;
    text-align:left;
    border-bottom:1px solid #dcdcdc;
    padding:8px 10px;
}

.forumheader3 {
    text-align:left;
    border:1px solid #dcdcdc;
    padding:5px 10px;
    -webkit-border-radius:.3em;
    -moz-border-radius:.3em;
    border-radius:.3em;
}

.finfobar {
background:#e0e0e0;
    border-bottom:1px solid #dcdcdc;
    border-left:1px solid #dcdcdc;
    border-right:1px solid #dcdcdc;
    padding:10px;
}

.smalltext {
    font-size:.858em;
}

.searchhighlight {
    text-decoration:underline;
    color:#ff0000;
    font-weight:700;
}



    
/*-  MEDIA QUERIES
----------------------------------------------------------------------*/
@media screen and (max-width: 780px) {

    body {
        position:relative;
        margin:0 14px;
        width:auto;
    }
    
    #header,.nav,.lCol,.lCol2,.tCol,.bCol,.banner {
        display:block;
        float: none;
        clear:both;
        width:auto;
        min-width:0;
    }
    
    .lCol,.lCol2,.lCol3 {
        padding-left:2.439024%;
        padding-right:2.439024%;
    }
    
    .lCol,.lCol2,.lCol3,.tCol,.bCol {
        margin-bottom:1.825em;
    }
    
    .lCol,.lCol2,.lCol3 {
        padding:1.825em 0;
    }
    
    .mCol,.rCol,.rCol2 {
        width:48.35%;
    }
    
    #logo{
        float:none;
        clear:both;
        display:block;
        margin:10px auto 15px;
        max-width:100%;
        text-align:center;
    }
    
    .nav {
        float:left;
        width:100%;
    }
    
    .fCol3 {
        text-align:center;
    }
    
    .banner {
        text-align:center;
        margin-bottom:0;
    }

    .post,.lCol2 .post{
        width:95.121952%;
        padding-left:2.439024%;
        padding-right:2.439024%;
        margin-bottom:30px;
    }
    
    .postimg {
        width:40%;
    }
    
    .searchForm {
        display:block;
        float:left;
        margin:10px 0 1px 0;
        padding:8px 3.6%;
        width:92%;
    }
    
    .nextprev{
        margin-top:-1.8em;
    }
    
    #commentform input,#commentform .tbox {
        width:90%;
    }
    
    div#default input {
        width:80%;
    }

    div#default input.button {
        width:auto;
    }
    
    .blueberry {
        display:none;
    }
    
    .lCol .blueberry,.lCol2 .blueberry,.lCol3 .blueberry {
        width:76%;
    }
    
    #signin_menu {
        width:70%;
        margin:0 auto;
    }
}

@media screen and (max-width: 640px) {
    
    .tabcontent{
        padding:10px 3.333333%;
    }
}

@media screen and (max-width: 480px) {

    body {
        position:relative;
        margin:0 8px;
        width:auto;
        font-size:.939em;
    }
    
    #header,.nav,.lCol,.lCol2,.lCol3,.tCol,.mCol,.rCol,.rCol2,.bCol,.fCol1,.fCol2,.banner {
        display:block;
        float: none;
        clear:both;
        width:auto;
        min-width: 0;
        margin-bottom:1.825em;
    }
    
    .nav,.lCol,.lCol2,.lCol3 {
        padding-left:2.439024%;
        padding-right:2.439024%;
    }
    
    .lCol,.lCol2,.lCol3 {
        padding:1.825em 0;
    }
    
    #logo{
        float:none;
        clear:both;
        display:block;
        margin:10px auto 15px;
        max-width:90%;
    }
    
    .nav{
        height:auto;
    }
    
    .nav ul {
        width:100%;
    }
    
    .nav ul li {
        display:block;
        float:left;
        width:48%;
        margin:0 1% 0.5em 1%;
    }
    
    .nav ul li a {
        display:block;
        text-align:center;
        -webkit-border-radius: .3em;
        -moz-border-radius: .3em;
        border-radius: .3em;
    }
    
    ul.secondary {
        clear:left;
         width:90%;
         margin:0 auto;
     }
    
    ul.secondary li a{
        padding:10px 1.510574%;
        margin:0;
        text-shadow:0 0 0 #000;
    }
    
    ul.fSitelinks {
        float:left;
        width:43.3%;
        height:auto;
        margin:0 3.333333%;
        margin-bottom:16px;
    }
    
    ul.split {
        clear:both;
    }
    
    ul.socialIcons {
        float:left;
        width:100%;
        text-align:center;
    }

    ul.socialIcons li {
        margin:0 .5em;
    }
    
    .fCol3 {
        text-align:center;
    }
    
    .banner {
        text-align:center;
        margin-bottom:0;
    }
    
    .post,.lCol2 .post{
        width:90.243904%;
        padding-left:4.878048%;
        padding-right:4.878048%;
        margin-bottom:30px;
    }
    
    .postinfo {
        font-size:0.685em;
        margin-bottom:16px;
    }
    
    a.news-extended-category-link,a.news-extended-overview-link {
        display:block;
    }
    
    .searchForm {
        display:block;
        float:left;
        margin:10px 0 16px 0;
        padding:8px 3.6%;
        width:92%;
    }
    
    .nextprev{
        margin-top:-1.8em;
    }
    
    #commentform input,#commentform .tbox {
        width:90%;
    }
    
    div#default input {
        width:90%;
    }

    div#default input.button {
        width:auto;
    }
    
    .blueberry {
        display:none;
    }
    
    .blueberry .slidecaption p {
        font-size:1em;
    }
    
/*-  LOGIN
----------------------------------------------------------------------*/
    .topnav {
        float:left;
        width:100%;
        padding:0;
        margin:0 0 8px 0;
        text-align:center;
    }
    
    .topnav a {
        margin:0 10px;
        padding:0;
    }
    
    #signin_menu {
        width:90%;
        margin:0 auto;
    }
    
    .tabcontent{
        padding:10px 3.333333%;
    }    
}

a.credit {
    font-size:.858em;
    font-style:italic;
}
Gewijzigd op 29/07/2014 15:49:26 door Kees van Norde
 
Erwin H

Erwin H

29/07/2014 16:02:34
Quote Anchor link
Sorry dat ik het zeg, maar niet weten wat van toepassing is klinkt bij mij alsof je dit allemaal niet zelf geschreven hebt. In dat geval zou ik de auteur hiervan eens gaan vragen het op te lossen.

En 1700 regels css.... daar ga ik niet doorheen. Alleen relevante code of een directe link naar de website helpen meer.
Gewijzigd op 29/07/2014 16:04:15 door Erwin H
 
Kees van Norde

Kees van Norde

29/07/2014 16:28:45
Quote Anchor link
Ik snap het hoor, en ik heb de website niet zelf geschreven maar het is een opensource systeem (e107).
Ik heb alleen e.e.a. aangepast.
De link naar de site is www.computertalk.nl je moet alleen ingelogt zijn in de admin om die button te kunnen zien dus ik weet niet of je er wat aan hebt?
 
Machiel K

Machiel K

29/07/2014 16:40:39
Quote Anchor link
Maak er gewoon eens het volgende van. Kijken of dit wel goed weergeven wordt.
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<input type="image" src="http://computertalk.nl/e107_themes/newstastic/forum/admin_delete.png" />

Met zo'n lap css kunnen we lastig op iets zoeken. Ik heb het geprobeerd met '#FFFFFF", "white", "input". Maar daar valt ook niks verkeerd aan te zien dat met dit probleem te maken heeft. Aan de css ligt het dus ook niet. Probeer die regel eens zonder de rest. Én met die src.
Gewijzigd op 29/07/2014 16:41:54 door Machiel K
 
Kees van Norde

Kees van Norde

29/07/2014 16:47:07
Quote Anchor link
Ik heb het getest maar dan laat hij het op precies dezelfde manier zien, ik had dat overigens ook al zelf getest maar dat had ik hier niet vermeld, maar toch bedankt.
 
Machiel K

Machiel K

29/07/2014 17:12:17
Quote Anchor link
Zou je dan een relevant stukje van je HTML willen laten zien? Dan weten we ook gelijk waar we moeten zoeken in die lap CSS.
 
Kees van Norde

Kees van Norde

29/07/2014 17:17:18
Quote Anchor link
Dit is dat stukje (geen idee of je er wat aan hebt).
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
10
     <div style='float:left;width:30%;text-align:center;'>
                     <form method='post' action='../../plugins/forum/forum_viewforum.php?21' id='frmMod_21_1850'>
        <div>
        <a href='../../plugins/forum/forum_post.php?edit.1850.'><img src='/e107_themes/newstastic/forum/admin_edit.png' alt='Moderator: Bewerken' title='Moderator: Bewerken' style='border:0; vertical-align: top;' /></a>
<input type='image' src='/e107_themes/newstastic/forum/admin_delete.png' alt='Moderator: verwijderen' title='Moderator: verwijderen' style='border:0'  name='delete_1850' value='thread_action' onclick="return confirm_('thread', 21, 1850, 'knorde')" />
        <input type='hidden' name='e-token' value='7de03a945959d1031bdedb675bf493f253d7ba276178c9.23647977' />
        <a href='../../plugins/forum/forum_conf.php?move.1850'><img src='/e107_themes/newstastic/forum/admin_move.png' alt='Moderator: Verplaatsen' title='Moderator: Verplaatsen' style='border:0; vertical-align: top;' /></a>
        </div>
        </form>
                 </div>
 
E vH

E vH

29/07/2014 17:24:06
Quote Anchor link
Style.css regel 693
padding: 8px;

Dit is je probleem. als ik deze uitzet, dan is het weg.
Dit heeft betrekking op textarea, .helpbox, input {}

Lijkt mij niet slim om deze padding weg te halen dan...

Geef je plaatje een ID en maak hier een eigen stijl voor aan.
Gewijzigd op 29/07/2014 17:25:09 door E vH
 
Kees van Norde

Kees van Norde

29/07/2014 18:02:59
Quote Anchor link
Hoi,

Bedankt!

Ik ben nu een klein stukje verder.
Echter als ik het plaatje een id geef:
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<input type='image' ".IMAGE_admin_delete." id='wittevlak' name='delete_{$post_info['thread_id']}' value='thread_action' onclick=\"return confirm_('{$type}', {$forum_id}, {$thread_id}, '{$post_info['user_name']}')\" />


En dit in de css toevoeg:
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
wittevlak {
}


Blijft hij die andere aanhouden (textarea, .helpbox, input).
Als ik padding: 8px; weghaal werkt het idd goed maar dat lijkt me niet verstandig omdat andere elementen dat ook gebruiken.
Doe ik het op deze manier goed om er een eigen style aan te geven of doe ik iets fout?
 
- SanThe -

- SanThe -

29/07/2014 18:14:09
Quote Anchor link
Het is een id dus een # in css.

#wittevlak
{
}
 
Kees van Norde

Kees van Norde

29/07/2014 20:55:34
Quote Anchor link
Het werkt, ik was idd dat hekje (#) vergeten.
Heel erg bedankt voor alle hulp!
 

29/07/2014 21:52:04
Quote Anchor link
Offtopic:

Klein tipje he, ik zou je css wel minimizen (alle witruimte weghalen)
 
Machiel K

Machiel K

30/07/2014 15:11:17
Quote Anchor link
Scheelt dat de laadtijd van de website? Nooit geweten, en zeker handig om te weten.
 



Overzicht Reageren

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.