Seite 1 von 1

Framset ins Layout einbauen

Verfasst: Di 1. Aug 2006, 15:14
von bibo
Hallo Gemeinde,
ich bin gerade am rumstricken an meiner Contenidoseite und stosse auf ein Problem.
Ich möchte in das Standard-Layout einen Framset einbauen. Und zwar einen Frame unten fest platzieren (Abbinder)
Bild

Wie kann ich das in das Layout einbauen?

Mein Layout:

Code: Alles auswählen

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>Contenido Demo-Seite</title>
	<link href="css/style.css" rel="stylesheet" type="text/css">
	<link href="css/style_print.css" rel="stylesheet" type="text/css" media="print">
	<!--[if IE]>
		<style>
			#imagecolumn {
				width:170px;
			}
			#logo {
				margin-top:0;
			}
			#navipath {
				padding-top:2px;
			}
			.balken {
				background-position:0px 0px ;
			}				
			#additionalnavi {
				padding-top:2px;
			}
        </style>
	<![endif]-->
<script language="javascript" type="text/javascript" src="js/jsApi.js"></script>
</head>
<body>
<div id="outer"> 
	<div id="innerwrap"> 
		<div id="centrecontent"> 
			<div id="navipath">
				<container id="60" name="Navigationspfad" types="Navigation" mode="fixed" default="Navigationspfad">Navigationspfad</container>
			</div>
			<container id="10" name="Headline" types="Content" default="Headline (HTML)">Headline (HTML)</container>
			<container id="12" name="Text" types="Content" default="">Content 1</container>
			<container id="15" name="Text" types="Content" default="">Content 2</container>
			<container id="22" name="Text" types="Content" default="">Content 3</container>
			<container id="24" name="Text" types="Content" default="">Content 4</container>
			<container id="26" name="Text" types="Content" default="">Content 5</container>
			<container id="28" name="Text" types="Content" default="">Content 6</container>
			<br/><br/>
			<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td style="background-color:rgb(210,210,210);"><img src="images/grey.gif" width="1" height="1" border="0" alt="" title=""/></td></tr></table>
			<div id="bottomnavi">
				<container id="30" name="BottomNavigation" types="Navigation" mode="fixed" default="BottomNavigation">BottomNavigation</container>
			</div>			
		</div>
		<div id="left"> 
			<container id="40" name="Hauptnavigation" types="Navigation" mode="fixed" default="Hauptnavigation">Hauptnavigation</container>
			<container id="44" name="Suche" types="Navigation" default="">Suche</container>
			<container id="48" name="Login" types="Navigation" default="">Login</container>
			<container id="49" name="Newsletter" types="Navigation" default="">Newsletter</container> </div>
	</div>
	<div id="right"></div>
	<div id="clearfooter"></div>
	<div id="header"> 
		<div id="additionalnavi"><container id="50" name="Hilfsnavigation" types="Navigation" mode="fixed" default="Hilfsnavigation">Hilfsnavigation</container></div>
		<div id="logo">
			<table width="780" border="0" cellspacing="0" cellpadding="0">
				<tr>
					<td><a href="front_content.php" title="Zur Homepage"><img src="images/logo.gif" width="101" hspace="30" height="61" border="0" alt="Logo" title="Logo"/></a></td>
					<td align="right"><img src="images/blank.gif" width="449" height="1" border="0"/></td>
					<td align="right"><container id="80" name="Illustration" types="Content" default=""></container></td>
				</tr>
				<tr>
					<td colspan="3" class="balken"><img src="images/blank.gif" border="0" width="780" height="5" alt=""/></td>
				</tr>
			</table>
		</div>
	</div>
</div>
<div id="imagecolumn">
	<container id="70" name="Teaser_Rechts" types="Content" mode="optional">Teaser (Rechts)</container>
	<container id="72" name="Teaser_Rechts" types="Content" mode="optional">Teaser (Rechts)</container>
	<container id="74" name="Teaser_Rechts" types="Content" mode="optional">Teaser (Rechts)</container>
</div>
</body>
</html>

Viele Grüsse
Bibo

Verfasst: Di 1. Aug 2006, 15:19
von kummer
du baust das gar nicht in das layout ein. das cms liegt ja dann im verzeichnis '/cms'. in das root-verzeichnis legst du das frameset und referenzierst im hauptbereich (in deinem fall oben) das cms (also '/cms/front_content.php').

that's it.

Verfasst: Di 1. Aug 2006, 15:39
von mvf
nebenbei sind frames ja wohl schon lange nicht mehr state of the art im web, warum nicht das ganze mit einem ordentlichen layout und css lösen?

nach wie vor gilt: beispielmandant ist eben nur ein beispiel, das gilt auch für's layout

Verfasst: Di 1. Aug 2006, 15:51
von kummer
mvf hat geschrieben:nebenbei sind frames ja wohl schon lange nicht mehr state of the art im web
das würde ich so ohne weiteres nicht unterschreiben. natürlich gibt es zahlreiche andere wege. zuweilen sind allerdings auch frames durchaus immer noch sehr interessant, da nicht immer alles neu geladen werden muss. auch das kann man mittlerweile anders lösen (iframe oder ajax). aber wenn man nicht gerade ausschliesslich für einen bestimmten browser in einer ganz bestimmten version arbeitet, muss man mit einschränkungen leben. und da sind mitunter frames ganz hilfreich.

Verfasst: Di 1. Aug 2006, 16:05
von bibo
@kummer
danke ich werde es gleich versuchen.

@mvf
Schönheit oder technische Bedürfnisse von Kunden sind unergründlich
:)

bibo