www.dcristo.net y he puesto imágenes para cada topic del foro, pero no lo veo tan bien, es decir no me gusta así, quisiera que las imágenes tengan un borde, exáctamente como esto
http://www.multitalk2.com/
No me digan poner borde a cada imagen, eso sería absurdo, ando dando cabezasos con esto, he creado una clase y aplico la clase sólo a la parte de la img, pero no coje. miren esto es mi web.php
Código PHP:
//ESTA ES LA TABLA.............HAY UN ESPACIO DE 5 entre el Contenido y la Celda
<table border="0" width="100%" cellspacing="1" cellpadding="5" class="bordercolor" style="margin-top: 1px;">';
/* Each board in each category's boards has:
new (is it new?), id, name, description, moderators (see below), link_moderators (just a list.),
children (see below.), link_children (easier to use.), children_new (are they new?),
topics (# of), posts (# of), link, href, and last_post. (see below.) */
foreach ($category['boards'] as $board)
{
echo '
<tr>
// ACA EMPIEZA LA CELDA QUE CONTIENE A LA IMAGEN.............LA CLASE ASIGNADA SE LLAMA.....PRUEBA
<td ' , !empty($board['children']) ? 'rowspan="2"' : '' , ' class="prueba" width="64px" align="center" valign="top"><a href="', $scripturl, '?action=unread;board=', $board['id'], '.0">';
// If the board is new, show a strong indicator.
if ($board['new'])
echo '<img src="', $settings['images_url'], '/on', $board['id'], '.gif" alt="', $txt[333], '" title="', $txt[333], '" />';
Código PHP:
.prueba
{
width:64px;
height:64px;
padding: -5px -5px -5px -5px;
color: #000000;
background-color: #ECEDF3;
border:solid 1px;
border-color:#000000;
}
Por fis, si alguno sabe como dejarlo como esto http://www.multitalk2.com/ agradeceré la respuesta.