und diese will nicht funktionieren.
genau des weiß i net wie des geht. . ....die allgemeine Link-Klasse verändern oder ihm in der entsprechenden php-Datei eine Klasse zuordnen...
Du widersprichst Dir selber, Du hast vorher gesagt, dass der Link in der php-Datei definiert ist, also kannst Du ihm in der TPL-Datei keine Klasse zuweisen.Shadowproject hat geschrieben:er hat die klasse die ich ihm in der tpl gegeben hab.
und diese will nicht funktionieren..
Code: Alles auswählen
$last_post_author = ( $topic_rowset[$i]['id2'] == ANONYMOUS ) ? ( ($topic_rowset[$i]['post_username2'] != '' ) ? $topic_rowset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['id2']) . '">' . $topic_rowset[$i]['user2'] . '</a>';
Code: Alles auswählen
{topicrow.LAST_POST_AUTHOR}
Code: Alles auswählen
<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['id2']) . '">
Code: Alles auswählen
<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['id2']) . '" class="my_link_class">
Code: Alles auswählen
a.my_link_class { color: #FF0000};
a.my_link_class.hover { color: #00FF00};
usw...
Code: Alles auswählen
'<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $topic_rowset[$i]['topic_last_post_id']) . '#' . $topic_rowset[$i]['topic_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" border="0" /></a>';
Code: Alles auswählen
( $topic_rowset[$i]['id2'] == ANONYMOUS ) ? ( ($topic_rowset[$i]['post_username2'] != '' ) ? $topic_rowset[$i]['post_username2'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $topic_rowset[$i]['id2']) . '" class="postdetails">' . $topic_rowset[$i]['user2'] . '</a>';