Forum tablazat cella nagysaga

zoliky képe

Szeretnem a forum cellakat egyforma nagysagra csinalni. A kovetkezo oldalon: www.progra.ro lathato a forum, az also foldereknel nem letezik leiras, ezert oszehuzodik a tablazat cella:

-C/C++
-Java
-Ruby

Meg lehetne valahogy oldani, hogy szepen nezen ki ? Nem baj ha a cellak merete kicsit nagyobb, peldaul ha olyan mint a vbulletin merete vagy mas forume.

Koszonom!

Fórum: 
Pasqualle képe

forum-list.tpl.php fajlban

keresd meg ezt a reszt

<tr id="forum-list-<?php print $child_id; ?>"

es csereld le erre
<tr height="60" id="forum-list-<?php print $child_id; ?>"
0
0
zoliky képe

wow, koszonom ez sikerult !

0
0
zoliky képe

Nem lehet ezt valahogy CSS-bol beadni neki ? A kovetkezo error fogad a W3C validator oldalon:

You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

XHTML Strict-et hasznalok. Koszonom!

0
0
aboros képe

és akkor nem lesz hibás.
vagy ne használd az égetett height -et, hanem helyette css -ben ugyanazt.

#forum tr {
height: 40px !important;
}

kábé. persze ennél nagyobb pontossággal kéne valahogy megcélozni, hogy ne minden ami a #forum alatt tr az 40px legyen, hanem csak ami kell.
0
0

-
clear: both;

zoliky képe

esetleg meg tudnam celozni igy : ?

<tr class="myrow" id="forum-list-<?php print $child_id; ?>"

.myrow {
    height: 40px !important;
}
0
0
aboros képe

tr.myrow {
height: 40px !important;
}

0
0

-
clear: both;

zoliky képe

Azert, mert a sor tartalmaz egy class-t csak igy tudtam megoldani:

<tr id="forum-list-<?php print $child_id; ?>" class="<?php print $forum->zebra; if (!$forum->is_container) { print " rowheight"; } ?>">

A kimenet igy nez ki:

class="odd rowheight"

Remelem jol raktam be a "conditional" sort. Nem ismerek minden PHP trukott es lehet, hogy letezik szebb megoldas.

0
0