Archiwum działu Ogólne (posty do 12.2008) - zwiększenie czcionki w shoutboxie ( portal)
mg1989sos - 19-01-2009, 01:20 Temat postu: zwiększenie czcionki w shoutboxie ( portal) wstawiłem do portalu shoutbox za pomocą tego kodu : Kod: | <form name="post" action="shoutbox_view.php" method="POST" target="shout_iframe">
<table width="200" align="center" cellpadding="0" cellspacing="0" border="0" class="forumline" style="border-width: 1px;">
<tr>
<td class="catHead" align="center" height="25"><span class="cattitle"><a href="shoutbox_view.php" class="mainmenu" title="Wszystkie Wiadomości">ShoutBox</a></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle"><iframe style="border-width: 1px;" name="shout_iframe" src="shoutbox_view.php" width="200" height="250"></iframe></td>
</tr>
<tr>
<td class="row1" align="center" valign="bottom" nowrap="nowrap"><span class="gensmall">
Wiadomość: <input type="text" name="message" style="height:17px;font-size:9px;width:100px;" size="60" maxlength="500" value="" class="post" onFocus="Active(this)" onBlur="NotActive(this)">
<br /><input type="submit" name="submit_button" value="Wyślij" class="button" style="font-size:9px; height:17px;" onclick="this.form.submit(); post.message.value=''; return false;">
<input type="submit" name="refresh" value="R" style="font-size:9px; height:17px; cursor: pointer" title="Odśwież" class="button" onclick="post.message.value=''; this.form.submit();" />
<input type="hidden" name="mode" value="submit"></span></td>
</tr>
</table>
</form> |
w jaki sposób mogę zwiększyć czcionkę wysłanych wiadomości ?
Bucu - 19-01-2009, 06:18
atrybuty odpowiadają za styl tabel, czcionek ogolnego wygladu - wiec musisz poszukac klasy w pliku *.css od stylu i tam zmienic.
xlesiu - 19-01-2009, 09:20
w shoutbox_view_body.tpl znajdź: Kod: | <span class="gensmall"> {shoutrow.NAME}: {shoutrow.MSG}</span> | i zamień na: Kod: | <span class="gensmallx"> {shoutrow.NAME}: {shoutrow.MSG}</span> |
i w pliku .css dodaj klasę .gensmallx Kod: | .gensmallx {font-size : rozmiarczcionki px; color: jakiśkolor; } |
|
|
|