Block-Schrift

11.09.2016 22:22
#1 Block-Schrift
Je
Mitglied

So hallo, ich wieder ^^

ich hab gleich noch ein Problem und zwar mit einer Tabelle, die ich in mein Forum eingebunden habe, am besten zeig ich direkt, was ich meine:

http://australian-beachstyle.xobor.de/

http://probeforum2.xobor.de/

oben bei den Inplay-Info ist im Probeforum der Text als Blocksatz geschrieben und in meinem Originalforum zieht sich der Text jedoch als eine Linie durch, obwohl es der gleiche Code ist, den ich von meinem Probeforum einfach kopiert habe. Woran könnte das dann liegen? Ich find da einfach den Fehler nicht.
Außerdem hab ich das Problem, wenn man auf die oberen Tabs klickt, bewegt sich der Text mit, was auch bei dem Originalcode nicht der Fall ist. Das ganze sollte dann wie folgt aussehen:

http://wickedways.bplaced.net/codes/tabelle.php

hier ist der Code zur Veranschaulichung:

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
 
.tab-headline {
background: #2d3236;
border-bottom: 3px solid #a1abb5;
padding: 10px;
text-align: center;
font-family: 'Kite One', sans-serif;
font-size: 20px;
color: #e0e0e0;
font-weight: bold;
text-transform: uppercase;
}
 
.tab-body {
height: 160px;
overflow: auto;
background-color: #e0e0e0;
padding: 15px;
font-family: verdana;
font-size: 10px;
color: #191919;
text-align: justify;
}
 
.tab-body b {
color: #2d3236;
font-weight: bold;
text-transform: uppercase;
}
 
/******************* FAKTEN & DROPDOWN *******************/
 
.tab-facts {
min-width: 90px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
text-align: center;
padding: 4px 8px 3px 8px;
display: inline-block;
margin: 5px 5px 0px 5px;
}
 
.tab-facts-l {
min-width: 90px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
text-align: center;
padding: 4px 8px 3px 8px;
display: inline-block;
margin: 5px 10px 0px 5px;
float: left;
}
 
.tab-facts-r {
min-width: 90px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
text-align: center;
padding: 4px 8px 3px 8px;
display: inline-block;
margin: 5px 5px 0px 10px;
float: right;
}
 
.tab-links {
width: 140px;
background: #2d3236;
font-family: 'Kite One', sans-serif;
font-size: 9px;
color: #ececec;
text-transform: uppercase;
padding: 2px 8px 1px 8px;
margin: 5px 5px 0px 5px;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
}
 

/******************* TABS BEI 'INPLAY' *******************/
 
.tabs input[type=radio] {
position: absolute;
display: none;
}
 
.tabs {
width: 300px;
height: 250px;
float: none;
list-style: none;
position: fixed;
padding: 0;
margin: auto;
}
 
.tabs li{
text-align: center;
display: inline;
}
 
/* Schrift-Icons für versch. Tabs */
.tabs label {
display: inline;
color: #2d3236;
font-size: 35px;
font-weight: bold;
border: 3px solid #2d3236;
padding: 3px 7px;
margin: 5px;
position: relative;
top: 0;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-transition: all 0.7s ease-in-out;
-moz-transition: all 0.7s ease-in-out;
-o-transition: all 0.7s ease-in-out;
transition: all 0.7s ease-in-out;
}
 

/* Ausgewählter Tab */
[type=radio]:checked ~ label {
color: #2d3236;
border: 3px solid #a1abb5;
top: 0;
}

[type=radio]:checked ~ label ~ .tab-content {
display: block;
}
 

/* Tab-Inhalt */
.tab-content{
width: 200px;
height: 150px;
overflow: auto;
background: #e0e0e0;
font-family: verdana;
font-size: 10px;
color: #191919;
text-align: justify;
padding-right: 10px;
z-index: 2;
display: none;
position: absolute;
top: 70px;
left: 0;
box-sizing: border-box;
-webkit-animation-duration: 0.5s;
-o-animation-duration: 0.5s;
-moz-animation-duration: 0.5s;
animation-duration: 0.5s;
}
 

/******************* SCROLLBARS *******************/
 
.tab-scroll::-webkit-scrollbar {
width:6px;
}
 
.tab-scroll::-webkit-scrollbar-track-piece {
background-color:#dbdbdb;
}
 
.tab-scroll::-webkit-scrollbar-thumb:vertical {
height:10px;
background-color:#2d3236;
}
 



ich hoffe, man kann mir auch bei diesem kleinen Problem helfen, sonst muss ich mir wohl etwas anderes einfallen lassen :)

LG
Jen


 Antworten

 Beitrag melden
Bereits Mitglied?
Jetzt anmelden!
Mitglied werden?
Jetzt registrieren!