Hey,
I've run into a small problem while making my site.
I made a css class called "centerbody".
It looks like this:
.centerbody { font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #000000; background-color: #FFFFFF; border: 1px #000000 solid}
I make a table and give the <td> this class (<td class=centerbody>).
In this row I echo the results of the php, and it works great.
The real problem is that when there is a <b>TEXT</b> in the database, it DOESN'T show bold in the row.
So if I would insert this into the database:
<b>TITLE</b>
It would just show normal, instead of bold.
It DOES show the <b> and </b> in the source code, but it doesn't show it.
Is this a problem with the CSS or could it be something with the echo?
Thanks,
Menno