Optionen ausschalten?!

Timo3000
Hey Leute,

ich hoffe, ich gehe euch nicht auf die Eier aber irgendwie bin ich anscheinend zu blöd für folgendes Problem:

Wenn man nen Beitrag verfasst, sind doch unten diese ganzen Optionen wie

"URLs automatisch umwandeln: fügt automatisch und in Internet-Adressen ein." und die ganzen anderen."

Wie schalte ich es ab, dass die angezeigt werden? Ist bestimmt irgendwo unter den Einstellungen aber ich find's ehrlich gesagt nicht.

Benutze 2.3.5. Augenzwinkern

MfG
engelchen97
gruppen bearbeiten - benutzerrechte - rechte für beitragserstellung smile

gruß engelchen
Timo3000
Ich will nicht alles deaktivieren. Nur diese ganzen Teile soll man nicht sehen, erst sobald man auf "Optionen" klickt sollen sie sichtbar sein?!

Welche Option ist das im ACP?
Izzmoo
ACP -> Templates bearbeiten -> CSS -> bearbeiten. Füge folgendes ein:

code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
hoverMenu {
 display: none;
 position: absolute;
 z-index: 10;
 padding: 5px;
 border: 1px solid {$style['tableinbordercolor']};
 <if($style['tableafontcolor']!="")><then>color: {$style['tableafontcolor']};</then></if>
 <if($style['tableabgcolor']!="")><then>background-color: {$style['tableabgcolor']};</then></if>
}
.hoverMenu ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 
}
.hoverMenu ul li {
 text-align: left;
 padding: 0;
}
Timo3000
Danke.

Ich habe es eingefügt aber geändert hat sich nichts unglücklich

Hier ein Bild, so wie es mein Kumpel haben wollte:

[IMG]http://img528.imageshack.us/img528/4781/klappezujz4.jpg[/IMG]
Izzmoo
Häng mal dein Template css, newthread, addreply und editpost an.
Timo3000
Ich wusste nicht, wie man templates ausm Forum holt sozusagen. Hab sie einfach in .txt Datein gepackt ^^
Izzmoo
Ersetz mal den Inhalt vom Template css mit diesem hier:
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:
<style type="text/css">
 <!--
body {
 <if($style['fontcolor']!="")><then>color: {$style['fontcolor']};</then></if>
 <if($style['pagebgcolor']!="")><then>background-color: {$style['pagebgcolor']};</then></if>
 <if($style['fontfamily']!="")><then>font-family: {$style['fontfamily']};</then></if>
 {$style['bodymore']}
}

body a:link, body a:visited, body a:active {
 <if($style['pagelinkcolor']!="")><then>color: {$style['pagelinkcolor']};</then></if>
 <if($style['pagelinkdeco']!="")><then>text-decoration: {$style['pagelinkdeco']};</then></if>
 {$style['pagelinkmore']}
}
body a:hover {
 <if($style['pagelinkhovercolor']!="")><then>color: {$style['pagelinkhovercolor']};</then></if>
 <if($style['pagelinkhoverdeco']!="")><then>text-decoration: {$style['pagelinkhoverdeco']};</then></if>
 {$style['pagelinkhovermore']}
}

<if($style['logobackground']!="")>
<then>
.logobackground {
 background-image: url({$style['logobackground']}); 
}
</then>
</if>

<if($style['mainbgcolor']!="")>
<then>
.mainpage {
 background-color: {$style['mainbgcolor']};
}
</then>
</if>

<if($style['tableoutbordercolor']!="")>
<then>
.tableoutborder {
 background-color: {$style['tableoutbordercolor']};
}
</then>
</if>

<if($style['tableinbordercolor']!="")>
<then>
.tableinborder {
 background-color: {$style['mainbgcolor']};
 border: 1px solid {$style['tableinbordercolor']};
}

.threadline {
 color: {$style['tableinbordercolor']};
}
</then>
</if>

.tabletitle {
 <if($style['tabletitlefontcolor']!="")><then>color: {$style['tabletitlefontcolor']};</then></if>
 <if($style['tabletitlebgcolor']!="")><then>background-color: {$style['tabletitlebgcolor']};</then></if>
 {$style['tabletitlemore']}
}

<if($style['tabletitlefontcolor']!="")><then>
.tabletitle_fc {
 color: {$style['tabletitlefontcolor']};
}
</then></if>

.inposttable {
 <if($style['inposttablebgcolor']!="")><then>background-color: {$style['inposttablebgcolor']};</then></if>
 {$style['inposttablemore']}
}

.tabletitle a:link, .tabletitle a:visited, .tabletitle a:active { 
 <if($style['tabletitlelinkcolor']!="")><then>color: {$style['tabletitlelinkcolor']};</then></if>
 <if($style['tabletitlelinkdeco']!="")><then>text-decoration: {$style['tabletitlelinkdeco']};</then></if>
 {$style['tabletitlelinkmore']}
}
.tabletitle a:hover { 
 <if($style['tabletitlelinkhovercolor']!="")><then>color: {$style['tabletitlelinkhovercolor']};</then></if>
 <if($style['tabletitlelinkhoverdeco']!="")><then>text-decoration: {$style['tabletitlelinkhoverdeco']};</then></if>
 {$style['tabletitlelinkhovermore']}
}

.smallfont {
 <if($style['smallfontsize']!="")><then>font-size: {$style['smallfontsize']}px;</then></if>
 <if($style['smallfontface']!="")><then>font-family: {$style['smallfontface']};</then></if>
 <if($style['smallfontcolor']!="")><then>color: {$style['smallfontcolor']};</then></if>
 {$style['smallfontmore']}
}

.normalfont {
 <if($style['normalfontsize']!="")><then>font-size: {$style['normalfontsize']}px;</then></if>
 <if($style['normalfontface']!="")><then>font-family: {$style['normalfontface']};</then></if>
 <if($style['normalfontcolor']!="")><then>color: {$style['normalfontcolor']};</then></if>
 {$style['normalfontmore']}
}

.tablecat {
 <if($style['tablecatfontcolor']!="")><then>color: {$style['tablecatfontcolor']};</then></if>
 <if($style['tablecatbgcolor']!="")><then>background-color: {$style['tablecatbgcolor']};</then></if>
 {$style['tablecatmore']}
}

<if($style['tablecatfontcolor']!="")><then>
.tablecat_fc {
 color: {$style['tablecatfontcolor']};
}
</then></if>

.tablecat a:link, .tablecat a:visited, .tablecat a:active {
 <if($style['tablecatlinkcolor']!="")><then>color: {$style['tablecatlinkcolor']};</then></if>
 <if($style['tablecatlinkdeco']!="")><then>text-decoration: {$style['tablecatlinkdeco']};</then></if>
 {$style['tablecatlinkmore']}
}
.tablecat a:hover { 
 <if($style['tablecatlinkhovercolor']!="")><then>color: {$style['tablecatlinkhovercolor']};</then></if>
 <if($style['tablecatlinkhoverdeco']!="")><then>text-decoration: {$style['tablecatlinkhoverdeco']};</then></if>
 {$style['tablecatlinkhovermore']}
}

.tableb {
 <if($style['tablebfontcolor']!="")><then>color: {$style['tablebfontcolor']};</then></if>
 <if($style['tablebbgcolor']!="")><then>background-color: {$style['tablebbgcolor']};</then></if>
 {$style['tablebmore']}
}

<if($style['tablebfontcolor']!="")><then>
.tableb_fc {
 color: {$style['tablebfontcolor']};
}
</then></if>

.tableb a:link, .tableb a:visited, .tableb a:active { 
 <if($style['tableblinkcolor']!="")><then>color: {$style['tableblinkcolor']};</then></if>
 <if($style['tableblinkdeco']!="")><then>text-decoration: {$style['tableblinkdeco']};</then></if>
 {$style['tableblinkmore']}
}
.tableb a:hover { 
 <if($style['tableblinkhovercolor']!="")><then>color: {$style['tableblinkhovercolor']};</then></if>
 <if($style['tableblinkhoverdeco']!="")><then>text-decoration: {$style['tableblinkhoverdeco']};</then></if>
 {$style['tableblinkhovermore']}
}

.tablea {
 <if($style['tableafontcolor']!="")><then>color: {$style['tableafontcolor']};</then></if>
 <if($style['tableabgcolor']!="")><then>background-color: {$style['tableabgcolor']};</then></if>
 {$style['tableamore']}
}

<if($style['tableafontcolor']!="")><then>
.tablea_fc {
 color: {$style['tableafontcolor']};
}
</then></if>

.tablea a:link, .tablea a:visited, .tablea a:active {
 <if($style['tablealinkcolor']!="")><then>color: {$style['tablealinkcolor']};</then></if>
 <if($style['tablealinkdeco']!="")><then>text-decoration: {$style['tablealinkdeco']};</then></if>
 {$style['tablealinkmore']}
}
.tablea a:hover { 
 <if($style['tablealinkhovercolor']!="")><then>color: {$style['tablealinkhovercolor']};</then></if>
 <if($style['tablealinkhoverdeco']!="")><then>text-decoration: {$style['tablealinkhoverdeco']};</then></if>
 {$style['tablealinkhovermore']}
}

.prefix {
 <if($style['prefixfontcolor']!="")><then>color: {$style['prefixfontcolor']};</then></if>
 <if($style['prefixfontweight']!="")><then>font-weight: {$style['prefixfontweight']};</then></if>
 <if($style['prefixdeco']!="")><then>text-decoration: {$style['prefixdeco']};</then></if>
 {$style['prefixmore']}
}

.time {
 <if($style['timefontcolor']!="")><then>color: {$style['timefontcolor']};</then></if>
 <if($style['timefontweight']!="")><then>font-weight: {$style['timefontweight']};</then></if>
 <if($style['timedeco']!="")><then>text-decoration: {$style['timedeco']};</then></if>
 {$style['timemore']}
}

.highlight {
 <if($style['highlightfontcolor']!="")><then>color: {$style['highlightfontcolor']};</then></if>
 <if($style['highlightfontweight']!="")><then>font-weight: {$style['highlightfontweight']};</then></if>
 <if($style['highlightdeco']!="")><then>text-decoration: {$style['highlightdeco']};</then></if>
 {$style['highlightmore']}
}

select {
 <if($style['selectfontsize']!="")><then>font-size: {$style['selectfontsize']}px;</then></if>
 <if($style['selectfontface']!="")><then>font-family: {$style['selectfontface']};</then></if>
 <if($style['selectfontcolor']!="")><then>color: {$style['selectfontcolor']};</then></if>
 <if($style['selectbgcolor']!="")><then>background-color: {$style['selectbgcolor']};</then></if>
 {$style['selectmore']}
}

textarea {
 <if($style['textareafontsize']!="")><then>font-size: {$style['textareafontsize']}px;</then></if>
 <if($style['textareafontface']!="")><then>font-family: {$style['textareafontface']};</then></if>
 <if($style['textareafontcolor']!="")><then>color: {$style['textareafontcolor']};</then></if>
 <if($style['textareabgcolor']!="")><then>background-color: {$style['textareabgcolor']};</then></if>
 {$style['textareamore']}
}

.input {
 <if($style['inputfontsize']!="")><then>font-size: {$style['inputfontsize']}px;</then></if>
 <if($style['inputfontface']!="")><then>font-family: {$style['inputfontface']};</then></if>
 <if($style['inputfontcolor']!="")><then>color: {$style['inputfontcolor']};</then></if>
 <if($style['inputbgcolor']!="")><then>background-color: {$style['inputbgcolor']};</then></if>
 {$style['inputmore']}
}

.publicevent {
 <if($style['highlightfontcolor']!="")><then>color: {$style['publiceventfontcolor']};</then></if>
 {$style['publiceventmore']}
}

.privateevent {
 <if($style['highlightfontcolor']!="")><then>color: {$style['privateeventfontcolor']};</then></if>
 {$style['privateeventmore']}
}

.hoverMenu {
 display: none;
 position: absolute;
 z-index: 10;
 padding: 5px;
 border: 1px solid {$style['tableinbordercolor']};
 <if($style['tableafontcolor']!="")><then>color: {$style['tableafontcolor']};</then></if>
 <if($style['tableabgcolor']!="")><then>background-color: {$style['tableabgcolor']};</then></if>
}
.hoverMenu ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 
}
.hoverMenu ul li {
 text-align: left;
 padding: 0;
}

{$style['cssmore']}
-->
</style>
Timo3000
Cool, danke dir.

Problem ist jetzt, dass diese Optionen in einem Style weg sind aber in dem Haupt-Style immer noch da sind.

Und komischerweise sind da verdammt viele Templatepacks mit vielen Namen drin. Keines dieser Packs hat aber den namen des Haupt-Styles?! Was nun? ^^