Schriftarten einzeln verändern

becca.
Hallo ihr Lieben!

Das hier wäre das betreffende Board

Nachdem Google und die Forensuche leider nichts ausgespuckt hat womit ich etwas anfangen konnte, wende ich mich mal an euch! Natürlich kann es auch sein das ich einfach falsch gesucht hab und es das Thema schon gibt - bitte verlinkt mir dann den Thread und ich geb' ruhe! : )

Ich denke, dass es möglich ist, die Schriftarten einzeln zu verändern - nur weiß ich leider nicht wie.

Wenn ich im Designpack im ACP die Attribute der normalen Schrift einstelle, sollte das genauso am Index angezeigt werden und das tut es auch. Allerdings halt auch in Beiträgen, und da hätte ich dann schon gerne eine andere, kleinere Schrift als die, die am Index bei den Threadtiteln angezeigt wird : )

Kann ich das über den CSS Code ändern? Der sieht aktuell so aus:

Zitat:

BODY { SCROLLBAR-BASE-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR: #911B1B;
background-image: url(http://i63.tinypic.com/npkzlc.png);
background-attachment: fixed; }


SELECT {
FONT-SIZE: 12px;
FONT-FAMILY: Calibri;
COLOR: ##000000;

}

TEXTAREA {
FONT-SIZE: 12px;
FONT-FAMILY: Calibri;
COLOR: #000000;
BACKGROUND-COLOR: #CFCFCF; ;
}

.input {
FONT-SIZE: 12px;
FONT-FAMILY: Calibri;
COLOR: #9a917f;
BACKGROUND-COLOR: #CFCFCF;

border-top-width : 1px;
border-right-width : 1px;
border-bottom-width : 1px;
border-left-width : 1px;
text-indent : 2px;
}
.topnavi {
padding-right: 5px;
padding-bottom: 18px;
padding-left: 5px;
}

#bg A:link, #bg A:visited, #bg A:active { COLOR: #000000; TEXT-DECORATION:none; }
#bg A:hover { COLOR: #0bbc94; TEXT-DECORATION: underline; }

#tablea A:link, #tablea A:visited, #tablea A:active { COLOR: #000000; TEXT-DECORATION: overline; }
#tablea A:hover { COLOR: #0bbc94; TEXT-DECORATION: underline; }

#tableb A:link, #tableb A:visited, #tableb A:active { COLOR: #000000; TEXT-DECORATION: underline; }
#tableb A:hover { COLOR: #000000; TEXT-DECORATION: none; }

#tablecat A:link, #tablecat A:visited, #tablecat A:active { COLOR: #ffffff; TEXT-DECORATION: underline; }
#tablecat A:hover { COLOR: #ffffff; TEXT-DECORATION: none; }

#tabletitle A:link, #tabletitle A:visited, #tabletitle A:active { COLOR: #000000; TEXT-DECORATION: none; }
#tabletitle A:hover { COLOR: #0bbc94; TEXT-DECORATION: underline; }

#tabletitle { background-image: url(http://i63.tinypic.com/npkzlc.png) ; }
.clsCursor { cursor: hand}


Kann ich bei dem #tablea Teil irgendwo ein #font-family: schriftart; einfügen? Irgendwie wollte das auch nicht funktionieren nänlich... verwirrt

Ich hoffe, jemand kann mir weiter helfen smile

Liebe Grüße!
Pigsel
xenasdreamland
bbcode_fontbits.tpl
bearbeiten
in images Ordner einen "fonts" Ordner machen und Schriften rein laden
und in der headinclude.tpl
code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
<style type="text/css">
@font-face{
font-family: 'SCHRIFTNAME';
src: url('images/fonts/SCHRIFTNAME.ttf') format('opentype');
}
</style>
 
 <!--[if  IE]>
<style type="text/css" media="screen">
@font-face{
font-family: 'SCHRIFTNAME';
src: url('images/fonts/SCHRIFTNAME.eot') ;
}
</style>
<![endif]-->


je Schrift eintragen

dann haste deine Schriften
becca.
Vielen lieben Dank ihr Zwei! <3