Ahh! How do I do a span/div in PHP?

Rip the Jacker

Diamond Member
Dec 29, 2004
5,415
1
76
In the code I attached, before <a> and after <br />, I did a <span> and got some error in PHP. I was wondering what the correct way would be to do a span/div so I could configure the font-size in style.css TO all the text in this file.. (<a>, and the date).
 

wkinney

Senior member
Dec 10, 2004
268
0
0
class="myclass" to the <a>, and put <span class="myclass"> </span> around the date part.

in css file:

.myclass {
font-size: 9px;
...
}