Zitat:
|
Zitat von noelboss mein Problem ist, dass ich alle Elemente einzeln, und dass auch nur einer bestimmten Spalte gestalten will... |
Am einfachsten geht das per CSS, indem Du die gewünschte Spalte mit einem DIV kapselst und darüber Deine Formatierungen steuerst:
HTML-Code:
...
<div id="content"><p>bla bla bla</p></div> <div id="rechts"><p>hi ho hi ho</p></div>
und
HTML-Code:
#content p { font-size: 14px; color: red; }
#rechts p { font-size: 10px; color: green;} Ich hoffe mal es wird klar,es geht um das "cascading" aus CSS
CU
maxhb