Dieser Beitrag wurde bereits 2 mal editiert, zuletzt von »dodan« (9. Oktober 2009, 00:27)
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 |
<!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" xml:lang="de" lang="de"> <head> <?php page_header(); ?> </head> <body id="top"> <p> </p> <!-- || LAYER || --> <div id="layer"> <!-- || HEADER || --> <div id="header"><?php page_load_msmod("headerimg"); ?> <!-- || LOGO || --> <div id="logo"><a href="http://www.24b.biz/w3btest"><img src="http://www.24b.biz/w3btest/includes/upload/hotreca_logo.png" alt="24b Test" /></a></div> <div id="sucheback"></div> <div id="suche"> <form name="suche" method="post" action="<?php page_dir(); ?>/15.suche/suchen/"> <input type="text" class="formular" name="suchbegriff" title="Suche + Enter" value="Suche" onblur="if (this.value=='') this.value='Suche';" onfocus="if (this.value=='Suche') this.value='';" /> <input type="submit" value="" class="button" /> </form> </div> <!-- || CLAIMS || --> <div id="claims"><?php page_claim(); ?></div> </div> <!-- || HEADER - END || --> <!-- || MENU LAYER || --> <div id="menulayer"> <!-- || SEITEN ANZEIGE || --> <div id="seite"> » <?php page_seite(); ?> </div> <!-- || MENU || --> <div id="menu"> <?php page_menu("0"); ?> </div> </div> <!-- || MENU LAYER - END || --> <!-- || CONTAINER || --> <div id="container"> <!-- || WRAPPER || --> <div id="wrapper"> <!-- || CONTENT || --> <div id="content"> <!-- || TEXT || --> <div id="text"> <!-- || CMS INHALT || --> <?php page_content(); ?> </div> <!-- || TEXT - END || --> </div> <!-- || CONTENT - END || --> <!-- || SIDEBARS || --> <div id="sidebarleft"> <!-- || SUBMENU || --> <div id="submenu"> <?php page_submenu("0"); ?> </div> <!-- || DON'T REMOVE CLEAR || --> <div class="clear"> </div> <div id="leftcontent"> <div> <?php page_load_msmod("sidebarleftbox"); ?> </div> </div> </div> <!-- || SIDEBARLEFT - END || --> <div id="sidebarright"><div id="rightcontent"> <div> <?php page_load_msmod("sidebarrightbox"); ?> </div> </div></div> <!-- || SIDEBARRIGHT - END || --> <!-- || SIDEBARS - END || --> <!-- || DON'T REMOVE CLEAR || --> <div class="clear"> </div> </div> <!-- || WRAPPER - END || --> </div> <!-- || CONTAINER - END || --> <!-- || FOOTER || --> <div id="footer"> <div id="seitenanfang"> <a href="#top" title="Zum Seitenanfang scrollen">â–² TOP</a> <br /><?php page_counter(); ?></div> <div id="footercontent"><?php page_footer(); ?><br />xhtml/css valid Layout copyright 24b.biz by ehmnet</div> </div> <!-- || FOOTER - END || --> </div> <!-- || LAYER - END || --> </body> </html> |
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 |
/* - LAYER + CONTAINER + WRAPPER - */ #layer {position:relative; text-align:left; margin: 0px auto; width:980px; border: 5px solid #fff; overflow:hidden; background:#fff; margin-top:0px; } #container {float:left; position:relative; display:block; background:#ffffff; border-left:200px solid #F2F3F4; border-right:200px solid #F2F3F4; } #wrapper {width:980px; display:block; margin-left:-200px; margin-right:-200px; } /* - CONTENT - */ #content {position:relative; float:left; left:200px; margin: 0px; padding: 0px; width:580px; overflow: hidden; color: #545248; background: transparent; } /* - SIDEBARLEFT - */ #sidebarleft {position:relative; float:left; left:-580px; width:200px; color: #545248; background: transparent; } #leftcontent {position:relative; padding:10px; } /* - SIDEBARRIGHT - */ #sidebarright {position:relative; float:right; right:0px; color:#404040; width:200px; color: #545248; } #rightcontent { position:relative; padding:10px; } /* - BOXES - */ #sidebarleft .box {position:relative; border:1px solid; border-color: #6F6C60 #8F8C7E #8F8C7E #6F6C60; margin: 0px 0px 10px 0px; } #sidebarleft .box h4 {color:#fff; font-size: 100%; background: #fff url(../images/boxheader.gif) repeat-x; } #sidebarleft .box h4, p {padding:4px 5px 4px 5px; margin:0px; } #sidebarright .box {position:relative; border:1px solid; border-color: #8F8C7E #6F6C60 #6F6C60 #8F8C7E; margin: 0px 0px 10px 0px; } #sidebarright .box h4 {color:#fff; font-size: 100%; background: #fff url(../images/boxheader.gif) repeat-x; } #sidebarright .box h4, p {padding:4px 5px 4px 5px; margin:0px; } |
PHP-Quelltext |
|
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 |
<!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" xml:lang="de" lang="de">
<head>
<?php page_header(); ?>
<!-- || Template powered by cms2day - www.cms2day.de || -->
</head>
<body id="top">
<p> </p>
<div id="layer">
<div id="menu">
<?php page_dropdown("0"); ?>
</div>
<div id="header">
<div id="logo">
<table style="width: 100%; height: 100%;" cellspacing="0" cellpadding="0" summary="text">
<tr>
<td style="width: 100%; height: 100%;" valign="middle" align="left">
<?php page_logo(); ?>
</td>
</tr>
</table>
</div>
<div id="claims">
<?php page_claim(); ?>
</div>
</div>
<div id="sitelayer">
<div id="seite">
<?php page_seite(); ?>
</div>
<div id="timedate">
<?php page_datum(); ?>
</div>
</div>
<!-- || CONTAINER || --> <div id="container">
<!-- || CONTENT || --> <div id="content">
<!-- || TEXT || --> <div id="text">
<!-- || CMS INHALT || -->
<?php page_content(); ?>
</div> <!-- || TEXT - END || -->
</div> <!-- || CONTENT - END || -->
<!-- || SIDEBARS || -->
<div id="sidebarright"><div id="rightcontent">
<div>
<?php page_load_msmod("sidebarrightbox"); ?>
</div>
</div></div> <!-- || SIDEBARRIGHT - END || --> <!-- || SIDEBARS - END || -->
<!-- || DON'T REMOVE CLEAR || -->
<div class="clear"> </div>
</div> <!-- || CONTAINER - END || -->
<div id="footer">
<div id="seitenanfang">
<a href="#top" title="Zum Seitenanfang scrollen">â–² TOP</a>
<br /><?php page_counter(); ?>
</div>
<div id="footercontent">
<?php page_footer(); ?><br />xhtml/css valide [dropdown mod] Layout by 24b.biz & w3bcms.de
</div>
</div>
</div>
</body>
</html>
|
PHP-Quelltext |
|
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 |
/* - MISC STYLE - */
* {margin: 0px; padding: 0px;}
html {width: 100%; height: 100%;}
body {text-align: center; color: #545248; background: #BBB5A5 url('../images/background.jpg') fixed; font-family: "Verdana", "Tahoma" , "Arial" , "MS Sans Serif"; font-size: 11px; line-height: 18px;}
.clear {clear: both; height: 0px; font-size: 0px; display: block; width: 100%;}
td {font-size: 11px; line-height: 18px; font-family: "Verdana", "Tahoma" , "Arial" , "MS Sans Serif";}
ul {margin: 0px; padding: 0px;}
li {list-style: none}
form {margin: 0px; padding: 0px;}
img {border: none;}
a {color: #545248; text-decoration: none;}
a:hover {color: #545248; text-decoration: underline;}
/* - LAYER + CONTAINER + WRAPPER - */
#layer {text-align:left; margin: 0px auto; width:783px; position: relative; background:#fff;}
#content {position:relative; float:left; left:200px; margin: 0px; padding: 0px; width:580px; overflow: hidden;
color: #545248; background: transparent;
/* - HEADER - */
#header {position:relative; width:100%; height:216px; margin: 0px; padding: 0px; background: url(../images/header.jpg) no-repeat;}
#logo {position: absolute; top: 0px; left: 15px; padding: 0px; width: 400px; height:180px;}
#claims {position: absolute; top: 10px; right: 15px; margin: 0px; padding: 0px; text-align: justify; width: 240px; font-family: "Arial"; font-size: 11px; font-weight: bold; color: #fff; text-align:right;}
/* - MENU - */
#menu {width: 783px; height: 26px; margin: 0px; padding: 0px; background: #615c4f; color: #fff; position:static;}
#menu ul{position: absolute; top: 0px; left: 0px; z-index: 100; padding: 0px; margin: 0px;}
#menu ul li {float: left; list-style: none; margin: 0px; border-right: 1px solid #BBB5A7; position: relative; z-index:100;}
#menu li a {display: block; padding: 0px 12px; text-decoration: none; font-size: 11px; color: #fff; background: #615c4f; margin:0px; line-height: 26px;}
#menu li a:hover {display: block; padding: 0px 12px; text-decoration: none; font-size: 11px; color: #fff; background: #333029; margin:0px; line-height: 26px;}
#menu li a.aktiv {display: block; padding: 0px 12px; text-decoration: none; font-size: 11px; color: #fff; font-weight: normal; background: #333029; margin:0px; line-height: 26px;}
#menu li a.aktiv:hover {display: block; padding: 0px 12px; text-decoration: none; font-size: 11px; color: #fff; font-weight: normal; background: #333029; margin:0px; line-height: 26px;}
/* - DROPDOWN SETTINGS - */
#menu table{position: absolute; z-index: 1000; left: -1px; top: 0px; border: none;}
#menu ul li ul {visibility: hidden; position: absolute; top: 26px; left: -1px; width: 184px; text-align: left; border: 1px solid #E1DED7; border-bottom: none; margin: 0px; padding: 0px;}
#menu ul li ul li{height: 26px; border: none; border-bottom: 1px solid #E1DED7; margin: 0px; padding: 0px;}
#menu ul li:hover ul, #menu ul a:hover ul{visibility: visible;}
#menu ul li ul li a {width: 160px; display:block; padding: 0px 12px 2px 12px; text-decoration: none; line-height: 24px; font-size: 11px; color: #333029; background: #fff; margin:0px;}
#menu ul li ul li a:hover {width: 160px; display:block; padding: 0px 12px 2px 12px; text-decoration: none; line-height: 24px; font-size: 11px; color: #fff; background: #9B9F4F; margin:0px;}
#menu ul li ul li a.aktiv {width: 160px; display:block; padding: 0px 12px 2px 12px; text-decoration: none; line-height: 24px; font-size: 11px; color: #fff; background: #333029; margin:0px;}
#menu ul li ul li a.aktiv:hover {width: 160px; display:block; padding: 0px 12px 2px 12px; text-decoration: none; line-height: 24px; font-size: 11px; color: #fff; background: #333029; margin:0px;}
/* - SITE + TIME - */
#sitelayer {position: relative; float:left; width:100%; height: 30px; margin: 0px; padding: 0px; background: #333029; color: #fff;}
#sitelayer #seite {position:relative; float:left; width:220px; left:10px; margin: 0px; line-height: 28px; color: #fff; background: transparent;}
#sitelayer #seite a {text-decoration: none; color: #fff;}
#sitelayer #seite a:hover{text-decoration: none; color: #fff;}
#sitelayer #timedate {position:relative; float:right; padding: 0px 15px 0px 0px; line-height: 28px; color: #fff; font-size: 10px;}
/* - CONTENT ... TEXT - */
#content #text {margin: 0px; padding: 0px; text-align: justify; color: #545248; background: transparent; line-height: 22px;}
#content #text h1 {font-size: 16px; font-weight: bold; margin: 0px 0px 20px 0px; color: #333029; font-family: "Arial"; text-transform: normal; letter-spacing: 0px;}
#content #text h2 {font-size: 14px; font-weight: bold; margin: 0px 0px 20px 0px; color: #333029; font-family: "Arial"; text-transform: uppercase; letter-spacing: 0px;}
#content #text h3 {font-size: 11px; font-weight: bold; margin: 0px 0px 5px 0px; color: #9B9F4F; font-family: "Verdana"; letter-spacing: 0px;}
#content #text h4 {font-size: 11px; font-weight: bold; margin: 0px 0px 15px 0px; color: #545248; font-family: "Verdana"; letter-spacing: 0px;}
#content #text h5 {font-size: 11px; font-weight: bold; margin: 0px 0px 0px 0px; color: #545248; font-family: "Verdana"; letter-spacing: 0px;}
#content #text h6 {font-size: 11px; font-weight: normal; margin: 0px 0px 0px 0px; color: #AFAFAF; 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: #9B9F4F; text-decoration: none;}
#content #text a:hover {color: #9B9F4F; text-decoration: underline;}
#content #text ul {margin: 0px 0px 0px 15px;}
#content #text ul li {list-style: square; line-height: 22px;}
#content #text ul li ul li {list-style: square; line-height: 22px; margin: 0px 0px 0px 5px;}
/* - SIDEBARRIGHT - */
#sidebarright {position:relative; float:right; right:0px; color:#404040; width:200px;
color: #545248;
}
#rightcontent { position:relative; padding:10px;
}
/* - BOXES - */
#sidebarright .box {position:relative; border:1px solid; border-color: #8F8C7E #6F6C60 #6F6C60 #8F8C7E; margin: 0px 0px 10px 0px;
}
#sidebarright .box h4 {color:#fff; font-size: 100%; background: #fff url(../images/boxheader.gif) repeat-x;
}
#sidebarright .box h4, p {padding:4px 5px 4px 5px; margin:0px;
}
/* - FOOTER - */
#footer {clear:both; position:relative; float:left; width:100%; height: 60px; margin: 0px; padding: 0px; font-size: 10px; color: #545248; line-height: 15px; background: #fff; border-top: 1px solid #E9E9E9; border-bottom: 10px solid #333029;}
#footer #seitenanfang {position:relative; float:left; padding: 15px 0px 0px 15px; margin: 0px; width: 200px;}
#footer #footercontent {position:relative; float:left; margin: 0px; padding: 15px 15px 0px 0px; width: 548px; text-align:right;}
#footer a {text-decoration: none; color: #545248; font-weight: bold; font-size: 10px;}
#footer a:hover {text-decoration: none; color: #707070; font-weight: bold; font-size: 10px;}
#footer a.w3b {text-decoration: none; color: #545248; font-weight: bold; font-size: 10px;}
#footer a:hover.w3b {text-decoration: none; color: #707070; font-weight: bold; font-size: 10px;}
|