• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Rahmen/Linien entfernen ausblenden

smsterminal

Mitglied
hi leutz, habe ne css-datei bekomme die gepunkteten linien rechts und links nicht weg habe alles probiert. im screen von firefox bleiben die aber habe alles ausgeblendet. ich poste mal die css.

body {
background-color: #FFFFFF;
}

h1{
color: #FFFFFF;
font-size:18px;
margin: 5px;
padding-top:0px;
text-align:center;
}

a{
color: #FFFFFF;
}

.topbar {
height:23px;
background-color: #FFFFFF;
border:0px hidden #333;
width:100%;
min-width:300px;
}

.shadetabs{
padding: 0px 0;
margin-left: 0;
margin-top: 0px;
margin-bottom: 0;
font: bold 0px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display:;
margin: 0;
}

.shadetabs li a{
text-decoration: none;
position: relative;
padding: 0px 0px;
margin-right: 0px;
border: 0px none #778;
color: #ffffff;
}

.shadetabs li a:visited{
color: #ffffff;
}
 
Werbung:
code tags setze ich nächstmal,sorry. ich hatte die borders auf none oder hidden gesetzt, hat nix reagiert, die gepunkteten linien sind immer noch da. reicht es wenn ich nur die border zeilen rausnehme oder auch die color darunter weiss nicht ob es die farbe des rahmens ist. wäre nett wenn ihr mir die richtigen zeilen mitschreiben könntet copy/past! thx
 
Werbung:
Das Attribut "color" bezieht sich auf die Schriftfarbe, die Randfarbe wird schon bei border:..; mitbestimmt.

Hier haste deinen Code mal borderfrei:

Code:
body {
background-color: #FFFFFF;
}

h1{
color: #FFFFFF;
font-size:18px;
margin: 5px;
padding-top:0px;
text-align:center;
}

a{
color: #FFFFFF;
}

.topbar {
height:23px;
background-color: #FFFFFF;
width:100%;
min-width:300px;
}

.shadetabs{
padding: 0px 0;
margin-left: 0;
margin-top: 0px;
margin-bottom: 0;
font: bold 0px Verdana;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the menu as desired*/
}

.shadetabs li{
display:;
margin: 0;
}

.shadetabs li a{
text-decoration: none;
position: relative;
padding: 0px 0px;
margin-right: 0px;
color: #ffffff;
}

.shadetabs li a:visited{
color: #ffffff;
}

Wenn die tollen gepunkteten Linien danach immernoch da sind, ist es irgendwo anders definiert worden.
 
Werbung:
Zurück
Oben