Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: cms2day Forum - Community & Support rund ums cms2day. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

1

Montag, 23. Februar 2009, 22:17

mhh flash ins design einbauen aber wie... ( #gallery_bg )

hallo alle bin ein noob was homepagen angeht aber hi und da probier ichs mal ein wenig aus...
so ich habe ein design fürs webcms hab mi statt einen bildhintergrund im design ein flash gebastelt aber ich kann es nicht einfügen dieser code ist mal die index.html im designordner

Quellcode

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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php page_header(); ?>
<title>Gleitschirm Verein</title>

</head>

<body>

<div id="site">

	<div id="header">
    
    	<div id="nav_left"></div>
        
        	<div id="header_mid">
            
                <div id="menu">			<?php page_menu("0"); ?>		</div>
                <div id="menue_bottom"></div>
                
            </div>
            
        <div id="nav_right"></div>
        
    </div>
    
    <div id="wetterbox">
    
    	<div id="logo"></div>
        <div id="wetter_bg">				
        
<div style="margin-left:2px;"><script language="JavaScript" src="http://www.wetter.net/cgi-bin/wetter-net3/webseitenwetter.pl?TYP=1&NAME=seeboden&ID=10518&ID2=0" type="text/javascript"></script></div>
 
 
				</div>
        <a href="http://www.bluesky.at" id="bluesky"></a>
        
    </div>
    
    <div id="headerpic"></div>
    
    <div id="content_top"></div>
    
    <div id="page_left"></div>
    
    <div id="gallery">
    
        <div id="gallery_head"></div>
        <div id="gallery_bg">
      <div> <OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
WIDTH="540" HEIGHT="164"
CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0">
<PARAM NAME="MOVIE" VALUE="gallery_bg.swf">
<PARAM NAME="PLAY" VALUE="true">
<PARAM NAME="LOOP" VALUE="true">
<PARAM NAME="WMODE" VALUE="opaque">
<PARAM NAME="QUALITY" VALUE="high">
<EMBED SRC="gallerie.swf" WIDTH="540" HEIGHT="164" PLAY="true" LOOP="true" WMODE="opaque" QUALITY="high"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT>
</div>
 
        
        </div>
        
    </div>
    
    <div id="headerpic01"></div>
    
    <div id="content">
    
    	<div id="explode">
        
        	<div id="hmenu"></div>
            <div id="inhalt">			<?php page_content(); ?>				</div>
            
        </div>
        
        <div id="lastnews_head"></div>
        <div id="lastnews_bg">
        
        <? include ("includes/module/lastnews/index.inc.php"); ?>  
        
        </div>
        <div id="partner_head"></div>
        <div id="partner_bg">
        
        <? include ("includes/module/partner/index.inc.php"); ?>  
        
        </div>
        
    </div>
    
    <div id="page_right"></div>
    <div id="footer">			<div class="footerfont"><?php page_footer(); ?></div>				</div>
    
</div>
</body>
</html>





und dieser code ist die main.css vom designorder

Quellcode

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
body {
margin: 0;
padding-right: 0;
background-color: #000000;
}

#site {
	margin: 0 auto 0 auto;
	width:1000px;
}

#header {
	width:1000px;
	height:58px;
	float:left;
}

#nav_left {
	background-image:url(../Bilder/nav_left.png);
	width:117px;
	height:58px;
	float:left;
}


#header_mid {
	width:782px;
	height:58px;
	float:left;
}

#menu {
	background-image:url(../Bilder/menue_bg.png);
	width:782px;
	height:30px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#FFF;
}

#menue_bottom {
	background-image:url(../Bilder/menue_bottom.png);
	width:782px;
	height:28px;
	float:left;
}

#nav_right {
	background-image:url(../Bilder/nav_right.png);
	width:101px;
	height:58px;
	float:left;
}

#wetterbox {
	width:468px;
	height:182px;
	float:left;
}

#logo {
	background-image:url(../Bilder/logo.jpg);
	width:468px;
	height:72px;
	float:left;
}

#wetter_bg {
	background-image:url(../Bilder/wetter_bg.jpg);
	width:281px;
	height:110px;
	float:left;
}

#bluesky {
	background-image:url(../Bilder/bluesky_logo.png);
	width:187px;
	height:110px;
	float:left;
}

#headerpic {
	background-image:url(../Bilder/header.png);
	width:532px;
	height:182px;
	float:left;
}

#content_top {
	background-image:url(../Bilder/content_top.png);
	width:1000px;
	height:58px;
	float:left;
}

#page_left {
	background-image:url(../Bilder/page_left.png);
	width:116px;
	height:641px;
	float:left;
}

#content {
	width:782px;
	float:left;
	background-image:url(../Bilder/background.png);
	background-repeat:repeat;
}

#gallery {
	width:540px;
	float:left;
}

#gallery_head {
	background-image:url(../Bilder/gallery_head.png);
	width:540px;
	height:33px;
	float:left;
}

#gallery_bg {
	background-image:url(/gallery_bg.swf);
	width:540px;
	height:164px;
	float:left;
}

#headerpic01 {
	background-image:url(../Bilder/header01.png);
	width:343px;
	height:197px;
	float:left;
}

#explode {
	width:540px;
	float:left;
}

#hmenu {
	background-image:url(../Bilder/hmenu.png);
	width:540px;
	height:38px;
	float:left;
}

#inhalt {
	background-image:url(../Bilder/explode.png);
	background-repeat:no-repeat;
	width:540px;
	min-height:406px;
	float:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#333;
}


#lastnews_head {
	background-image:url(../Bilder/lastnews_head.png);
	width:242px;
	height:38px;
	float:left;
}

#lastnews_bg {
	background-image:url(../Bilder/lastnews_bg.png);
	width:242px;
	height:176px;
	float:left;
}

#partner_head {
	background-image:url(../Bilder/partner_head.jpg);
	width:242px;
	height:26px;
	float:left;
}

#partner_bg {
	background-image:url(../Bilder/partner_bg.png);
	width:242px;
	height:204px;
	float:left;
}

#page_right {
	background-image:url(../Bilder/page_right.png);
	width:101px;
	height:444px;
	float:left;
}

#footer {
	background-image:url(../Bilder/footer.png);
	width:1000px;
	height:61px;
	float:left;
}


/* - MENU - */



#menu ul {

	margin: 0px auto;
	padding: 0px;

}

#menu li {

	display: inline;
	list-style: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	float: left;

}

#menu li a {

	text-decoration: none;
	height: 35px;
	font-size: 12px;
	line-height: 35px;
	padding: 10px 15px;
	color:#8199bd;
	font-family:Arial, Helvetica, sans-serif;

}

#menu li a:hover {

	text-decoration: none;
	height: 35px;
	font-size: 14px;
	line-height: 35px;
	padding: 10px 15px;
	color:#95c2ff;
	font-family:Arial, Helvetica, sans-serif;
}

#menu li a.aktiv, #menulayer #menu li a.aktiv:hover {

	text-decoration: none;
	height: 35px;
	font-size: 14px;
	line-height: 35px;
	padding: 11px 13px;
	color:#fff;
	font-family:Arial, Helvetica, sans-serif;
}

/* - TEXT - */


#content #text h1 { 

	font-size: 16px;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
	color: #9dbb36;
	font-family: "Arial";
	text-transform: uppercase;
	letter-spacing: 0px;

}

#content #text h2 { 

	font-size: 14px;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
	color: #545248;
	font-family: "Arial";
	text-transform: none;
	letter-spacing: 0px;

}

#content #text h3 { 

	font-size: 11px;
	font-weight: bold;
	margin: 0px 0px 5px 0px;
	color: #9dbb36;
	font-family: "Verdana";
	letter-spacing: 0px;

}

#content #text p {

	margin: 0px 0px 15px 0px;

}

#content #text hr {
         
	border-top: 1px solid #D7D7D7;
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 0px 0px 15px 0px;
	height: 2px;

}

#content #text a {

	color: #545248;
	text-decoration: none;

}

#content #text a:hover {

	color: #545248;
	text-decoration: underline;

}


/* - FOOTER - */




#footer a.seitenanfang {

	position: absolute;
	top: 0px;
	left: 20px;

}

#footer span {

	position: absolute;
	top: 0px;
	left: 220px;

}

#footer a {

	text-decoration: none;
	color: #b5b5b5;
	font-size: 10px;

}

#footer a:hover {

	text-decoration: underline;
	color: #b5b5b5;
	font-size: 10px;

}

#footer a.w3b {

	text-decoration: none;
	color: #b5b5b5;
	font-weight: bold;
	font-size: 10px;

}

#footer a:hover.w3b {

	text-decoration: underline;
	color: #b5b5b5;
	font-weight: bold;
	font-size: 10px;

}

a {
	color:#06C;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}

.footerfont {
	color:#fff;
	font-size:11px;
	text-align:center;
}


so ich hab die flashdatei überall hinkopiert in jedem ordner aber sie wird nicht abgespielt

frage an euch woran kann es liegen

Werbung

emet

Admin & Support

  • »emet« ist männlich

Beiträge: 2 530

Wohnort: Rhein/Main

Paypal:

  • Nachricht senden

2

Montag, 23. Februar 2009, 23:14

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

Die benötigt als Flash soweit ich weis den kompletten Pfad mit <!-- m --><a class="postlink" href="http://www">http://www</a><!-- m -->. usw.
dann gehts.
.
HTML, was ist das? Ein neues Männermagazin? Css.., was es so alles gibt!

News: http://www.cms2day.de/news/1/
Features: http://www.cms2day.de/cms-funktionen/

Zufrieden mit cms2day und unserer Arbeit/Support - Spenden (-Button links) sind herzlich Willkommen - Dankeschön.
.

Werbung

3

Dienstag, 24. Februar 2009, 13:55

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

die index.html datei oer ???
mfg Tom

Werbung

4

Dienstag, 24. Februar 2009, 15:28

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

Hi,

so wie emet es bereits gesagt hat du brauchst auch meines Wissen nach den Vollständigen Pfad wo deine Flash datei ist.

Zitat

<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
WIDTH="540" HEIGHT="164"
CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0">
<PARAM NAME="MOVIE" VALUE="http://www.......de/gallery_bg.swf">
<PARAM NAME="PLAY" VALUE="true">
<PARAM NAME="LOOP" VALUE="true">
<PARAM NAME="WMODE" VALUE="opaque">
<PARAM NAME="QUALITY" VALUE="high">
<EMBED SRC="gallerie.swf" WIDTH="540" HEIGHT="164" PLAY="true" LOOP="true" WMODE="opaque" QUALITY="high"
PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT>


Also in der Index datei.
Wenn das auch nicht klappt einfach noch mal melden ;)

mfg Mario

Werbung

emet

Admin & Support

  • »emet« ist männlich

Beiträge: 2 530

Wohnort: Rhein/Main

Paypal:

  • Nachricht senden

5

Dienstag, 24. Februar 2009, 16:38

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

Muss gehen - hab ich auch schon mal so eingebaut und hat gefunzt.

Kann nur der Pfad sein.
.
HTML, was ist das? Ein neues Männermagazin? Css.., was es so alles gibt!

News: http://www.cms2day.de/news/1/
Features: http://www.cms2day.de/cms-funktionen/

Zufrieden mit cms2day und unserer Arbeit/Support - Spenden (-Button links) sind herzlich Willkommen - Dankeschön.
.

Werbung

6

Dienstag, 24. Februar 2009, 21:19

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

perfekt haut hin :D
thx

Werbung

emet

Admin & Support

  • »emet« ist männlich

Beiträge: 2 530

Wohnort: Rhein/Main

Paypal:

  • Nachricht senden

7

Dienstag, 24. Februar 2009, 21:57

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

Na Klasse - Problem erledigt und wieder funzt was.
.
HTML, was ist das? Ein neues Männermagazin? Css.., was es so alles gibt!

News: http://www.cms2day.de/news/1/
Features: http://www.cms2day.de/cms-funktionen/

Zufrieden mit cms2day und unserer Arbeit/Support - Spenden (-Button links) sind herzlich Willkommen - Dankeschön.
.

Werbung

8

Mittwoch, 25. Februar 2009, 17:02

Re: mhh flash ins design einbauen aber wie... ( #gallery_bg )

super :D

mfg Mario

Werbung