topics anywhere lettertype veranderen??
Forumregels
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.
Sinds 1 januari 2009 wordt phpBB2 niet meer ondersteund.
Onderstaande informatie is verouderd en dient uitsluitend als archief.

topics anywhere lettertype veranderen??
Lettertype kleiner maken?
Laatst gewijzigd door iemand08 op 04 jan 2007, 03:34, 1 keer totaal gewijzigd.
- waltdisneydvd
- Berichten: 197
- Lid geworden op: 30 jul 2005, 08:21
- Locatie: Duiven
- Contacteer:
topics_anywhere_body.tpl aanpassen
KNAVIVO DIERENHULP
Stimuleer verdraagzaamheid. Wees eens wat vaker irritant.
Stimuleer verdraagzaamheid. Wees eens wat vaker irritant.
Nee, dan pas je de layout van de pagina aan waar je alle functies die erin komen kan aanpassen etc. De layout van hoe het op je site zelf komt staat gewoon in het php bestand...XP-Rene schreef:topics_anywhere_body.tpl aanpassen
Zoek hiernaar (in topics_anywhere.php):
Code: Selecteer alles
if ($HTTP_GET_VARS['jlp'] == 'y')
{
$url_to_topic = '<a href=\"' . $full_url . "/viewtopic.$phpEx?" . POST_POST_URL . '=' . $data[$i]['topic_last_post_id'] . '#' . $data[$i]['topic_last_post_id'] . '\"' . $css_link . $target_link . '> ' . addslashes($data[$i]['topic_title']) . '</a>';
Code: Selecteer alles
if ($HTTP_GET_VARS['jlp'] == 'y')
{
$url_to_topic = '<a class="classnaam" href=\"' . $full_url . "/viewtopic.$phpEx?" . POST_POST_URL . '=' . $data[$i]['topic_last_post_id'] . '#' . $data[$i]['topic_last_post_id'] . '\"' . $css_link . $target_link . '> ' . addslashes($data[$i]['topic_title']) . '</a>';
Oke, phpbb.nl heeft dus een functie dat je post niet te lang mag zijn
Doe wat ik net zei, dat wijzigen in topics_anywhere.php
vervang "classnaam" dan met "topicsanywherelink"
Dan moet je ff als je topicsanywhere.php gaat gebruiken je css bestand opgeven.
En dan zet je dit in subSilver.css:

Doe wat ik net zei, dat wijzigen in topics_anywhere.php
vervang "classnaam" dan met "topicsanywherelink"
Dan moet je ff als je topicsanywhere.php gaat gebruiken je css bestand opgeven.
En dan zet je dit in subSilver.css:
Code: Selecteer alles
a.topicsanywherelink {
font-family : Verdana;
font-size: 10;
font-weight : bold;
color : #000000;
text-decoration : none;
}
a:hover.topicsanywherelink {
font-size: 10;
font-weight : bold;
color : #000000;
text-decoration : none;
}
a:active.topicsanywherelink {
font-size: 10;
font-weight : bold;
color : #000000;
text-decoration : none;
}
a:visited.topicsanywherelink {
font-family : Verdana;
font-size: 10;
font-weight : bold;
text-decoration : none;
color : #000000;
}