[CSS] CSS Frage

LittleVampirchen
Hallo
Ich bastel grade an meiner Homepage. Sie wird mit einem fertigen I Frame Layout gemacht.

Bei dem Layout sit eingestellt, dass die Schrift überall GROßGESCHRIEBEN wird. Ich finde das aber nicht so toll und wollte fragen, ob mir jemand den CSS Code ändern kann, so dass

1.) Die Schrift klein ist
2.) Der Text mittig ausgerichtet ist.

Der Code:

code:
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:
body, table {
background-color:#FFFFFF;
font-family:Trebuchet MS;
font-size:7pt;
text-transform: uppercase;
font-color:#00000;
color:#000000;
line-height: 9px;
overflow-x:hidden;x:hidden;}

a:link, a:visited, a:active {
height:0px;
font-size:6pt;
text-decoration:none;
color: #000000;
}

a:hover {
color: #C7CBEE;
text-decoration: none;
cursor: none;
}

b{color:#AEB3E6;}
u{color:#E8DAEB;}
i{color:#BF99E2; text-transform: lowercase;   }

tr#main {
margin: 0px;
text-align: left;
font-size: 8px;
}

td#id2 {
border-bottom:0px;
margin: 0px;
font-size:8px;
width: 100%;
}

tr#main a {
text-decoration: none;
display: block;
font-size: 9px;
color:#000000;
line-height:10px;
height:10;
background-color: #FAE8F6;
}

tr#main a:hover {
text-decoration: none;
display: block;
font-size: 9px;
color: #000000;
text-align:left;
background-color: #C7CBEE;
text-transform: none;

}

tr#main1 {
margin: 0px;
text-align: right;
font-size: 8px;
}

td#id1 {
border-bottom:0px;
margin: 0px;
font-size:8px;
width: 100%;
}

tr#main1 a {
text-decoration: none;
display: block;
font-size: 9px;
color:#000000;
line-height:10px;
height:10;
background-color: #C7CBEE;
}

tr#main1 a:hover {
text-decoration: none;
display: block;
font-size: 9px;
color: #000000;
text-align:right;
background-color: #FAE8F6;
text-transform: none;

}

h2 {
line-height:10px;
height:10px;
margin:0;
font-family:Palatino Linotype ;
color:#9F7EC5;
font-weight:bold;
font-size: 10px;
text-align:right;
border-bottom:1px solid #000000;}

h1 {
line-height:10px;
height:10px;
margin:0;
font-family:Palatino Linotype ;
color:#9F7EC5;
font-weight:bold;
font-size: 10px;
text-align:left;
border-bottom:1px solid #000000;
}


Danke.
Gonzo
Hi,

bei "text-transform" würde ich mal "lowercase" ausprobieren und bei "text-align" "center" anstelle von "left".

(Kopiert Ihr die Sachen nur, ohne zu wissen, was sich da tut?)
Augenzwinkern
LittleVampirchen
Nein, tue ich nciht Augenzwinkern Ich kenne mich nur noch nicht soo mit HTML aus Augenzwinkern

Jetzt sind aber auch dei Buchstaben klein, die ich groß geschrieben habe unglücklich

Habs hinbekommen, einfach

text-transform: none; hingeschrieben.
Gonzo
Zitat:
Jetzt sind aber auch dei Buchstaben klein, die ich groß geschrieben habe


Wolltest Du doch:

Zitat:
1.) Die Schrift klein ist


Augenzwinkern