Suche im Forum:
Suchen


Autor Nachricht
Beitrag09.12.2009 um 17:00 (UTC)    
Titel: [kann closed]CSS: KLeines Problem

hmm..
ich habe folgendes Problem irgendwas scheint mit diesesm Code:

Code:
-->
</style>
<table align="center" cellpadding=0 cellspacing=0 border=0><tr><td align="center">
<style type="text/css">
<!--

/* Hintergrund */
body {
background-color: #FFFFFF;
background-image: url(); }
/* Felder die wir nicht benötigen */
h1#header {display:none;}
h2#title {display:none;}
#sidebar_heading{display:none;}
#counter{display:none;}
#nav_heading{display:none;}

/* Feld Navigation */
#nav_container {
position: absolute;
top:120px;
width: 155px;
margin-left:10px;
border:1px solid #000000;}

/* Hintergrund Navi-Buttons */
li.nav_element {
list-style-type: none;
position: relative;
margin-bottom:5px;}

/* Navi-Links */
li.nav_element a {
display: block;
width: 150px;
font-family:arial;
font-size:13px;
text-decoration: none;
text-align: left;
color:#C6BA8A;
padding-left:0px;
background-color:;
background-image:url();
border: 1px solid #C6BA8A;}

/* Hover-Effekt Navi-Links */
li.nav_element a:hover{
color: #2D261C;
background-color:#C6BA8A;
background-image:url();
border: 1px solid #FFFFFF;}

#content {
margin-top: 150px;
margin-left:220px;
width: 550px;
padding-left: 10px;
padding-right: 10px;
height:auto;
color:#000000;
font-size:13px;
font-family:arial;
text-align:left;
background-color:;
background-image:url();
border: 1px solid #000000;}

/* Linkfarben im Textfeld content */
#content a{
color:#000080;}

#ticker{
position:absolute;
top:240px;
padding-left: 10px;
padding-right: 10px;
margin-left:220px;
width: 550px;
height:20px;
color:#FFFFFF;
font-size:13px;
font-family:arial;
text-align:left;
background-color:#000000;
background-image:url();
border: 1px solid #000000;}

#footer{
padding-left: 10px;
padding-right: 10px;
margin-left:220px;
width: 550px;
height:auto;
color:#FFFFFF;
font-size:13px;
font-family:arial;
text-align:left;
background-color:#000000;
background-image:url();
border: 1px solid #000000;}
 

#sidebar_container {
position: absolute;
top: 450px;
margin-left: 10px;
width: 200px;
height: 180px;
line-height:9px;
color: #C6BA8A;
font-size: 12px;
font-family: arial;
overflow: auto;
border: 1px solid #000000;}

#header{
position: absolute;
padding-left: 10px;
padding-right: 10px;
top: 120px;
margin-left:220px;
width: 550px;
height: 63px;
color: #000000;
font-size: 12px;
font-family: arial;
text-align: center;
border: 1px solid #000000;}

#box{
position: absolute;
top: 650px;
margin-left: 10px;
width: 200px;
height: 180px;
color: #C6BA8A;
font-size: 12px;
font-family: arial;
overflow: auto;
text-align:left;
border: 1px solid #000000;}

/* Allgemeine Einstellungen (Schriftart, Schriftgröße...) */
body {
font-family: Verdana, sans-serif;
font-size: 10px;
overflow: auto;
margin: 0px; }

/* keine Auflistungspunkte vor Navi-Links */
ul, li {
list-style-type: none;
padding: 0px;
margin: 0px; }

/* Abstand zwischen Schrift zum Rand */
li a {
padding-right: 5px;
padding-top: 0px; }

/* Coolmenü positionieren, Werte bei "top" , "left" und "width" anpassen */
div.menu {
position: absolute;
top: 220px;
margin-left:220px;
width:570px; }

/* Breite der Menüpunkte einstellen */
.menu li {
width: 95px;
float: left; }

/* Aussehen der Menüpunkte einstellen */
.menu a {
border: 1px solid #000000;
background-color: #;
background-image: url(URL);
text-decoration: none;
text-align: center;
font-weight: bold;
cursor: pointer;
margin: 0px;
display: block;
height: 12px;
color: #00CCFF; }

/* Aussehen der Menüpunkte beim Hover Effekt */
.menu a:hover {
background-color: #00CCFF;
background-image: url(URL);
color: #000000; }

#smenu1, #smenu2, #smenu3, #smenu4, #smenu5,#smenu6 {
font-size: 10px;
display: none;
width: 95px;
float: left; }

#smenu1 a, #smenu2 a, #smenu3 a, #smenu4 a, #smenu5 a,#smenu6 a {
font-weight: bold;
padding-top: 5px;
border-top: 0px;
cursor: pointer;
color: #FFFFFF; }

//-->
</style>

<!-- Anfang des Scriptes -->
<script type="text/javascript">
<!--
function montre(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'block';
else if (all)
all[id].style.display = 'block';
else
layers[id].display = 'block';
}
}
function cache(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'none';
else if (all)
all[id].style.display = 'none';
else
layers[id].display = 'none';
}
}

</script>
<!-- Ende des Scriptes -->


nicht ganz zustimmen, weil auf meiner HP wird über der werbung
Zitat:
//-->


angezeigt. ich hab kein plan wieso o.O


Zuletzt bearbeitet von error-test am 10.12.2009, 01:54, insgesamt einmal bearbeitet
Beitrag09.12.2009 um 17:14 (UTC)    
Titel:

wohin gehört dieser teil?
Code:
-->
</style>
<table align="center" cellpadding=0 cellspacing=0 border=0><tr><td align="center">


Versuch den mal wegzulassen und eigentlich reicht <style type="text/css"> und </style> ohne
Code:
-->  ## //-->
da dieses ja die styletags sind die du im CSS code nicht mit angeben sollst ("CSS-Code ohne Style Tags")


mfg Landario
______________
Beitrag09.12.2009 um 17:16 (UTC)    
Titel:

das oben soll eigl das ganze zentriern xD

ich versuchs mal ..
danke
Beitrag09.12.2009 um 17:20 (UTC)    
Titel:

EDIT: *gegen kopf hau* das gehört ja alles in den text über dem design Razz und nich ins css ding..


sorry mein fehler Razz


Zuletzt bearbeitet von error-test am 09.12.2009, 18:35, insgesamt einmal bearbeitet
Beiträge der letzten Zeit anzeigen:   


Powered by phpBB © 2001, 2005 phpBB Group
Deutsche Übersetzung von phpBB.de