wersja skryptu MyBB:1.6.12
adres forum:gamemods.pl
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Jak wyśrodkować button odpowiedź aby go lekko obniżyć w dół i zmienić mu kolor.
Jeszcze bym chciał dodać button podgląd do szybkiej odpowiedzi i tak samo go wyśrodkować i nadać mu kolor
ACP → Style i szablony → Szablony → Twój szablon → Widok wątku →
showthread_quickreply
Podmień jego zawartość na:
Kod PHP:
<br />
<form method="post" action="newreply.php?tid={$tid}&processed=1" name="quick_reply_form" id="quick_reply_form">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
<input type="hidden" name="action" value="do_newreply" />
<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
<input type="hidden" name="from_page" value="{$page}" />
<input type="hidden" name="tid" value="{$tid}" />
<input type="hidden" name="method" value="quickreply" />
<div class="thead" style="line-height: 150%;">
{$lang->quick_reply}
</div>
<div class="quickreplay_BG">
<a href="member.php?action=profile&uid={$mybb->user['uid']}" title="Pokaż profil"><img src="{$mybb->user['avatar']}" alt="" /></a>
<textarea rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>
{$captcha}
<br><br><br>
<center>
<input type="submit" class="button_login" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button_login" name="previewpost" value="{$lang->preview_post}" tabindex="3" />
</center>
</div>
</form>
A jak jeszcze zmienić aby kolor ich był pobrany np. z belki tam jak mam resztę buttonów
w <input ...> masz class="button_login"
te button login sobie zmień.
Nie wiem czy edytcja ta coś będzie miała wspólnego z sygnaturka ale mianowicie po dodaniu odpowiedzi nie pokazują się sygnaturki użytkowników. Jak stworzę nowy wątek to sygnaturka się dodaje
Kod PHP:
<br />
<form method="post" action="newreply.php?tid={$tid}&processed=1" name="quick_reply_form" id="quick_reply_form">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="subject" value="RE: {$thread['subject']}" />
<input type="hidden" name="action" value="do_newreply" />
<input type="hidden" name="posthash" value="{$posthash}" id="posthash" />
<input type="hidden" name="quoted_ids" value="" id="quoted_ids" />
<input type="hidden" name="lastpid" id="lastpid" value="{$last_pid}" />
<input type="hidden" name="from_page" value="{$page}" />
<input type="hidden" name="tid" value="{$tid}" />
<input type="hidden" name="method" value="quickreply" />
<div class="thead" style="line-height: 150%;">
{$lang->quick_reply}
</div>
<div class="quickreplay_BG">
<a href="member.php?action=profile&uid={$mybb->user['uid']}" title="Pokaż profil"><img src="{$mybb->user['avatar']}" alt="" /></a>
<textarea rows="8" cols="80" name="message" id="message" tabindex="1"></textarea>
<div style="display: none;">{$option_signature}</div>
{$captcha}
<br><br><br>
<center>
<input type="submit" class="button_login" value="{$lang->post_reply}" tabindex="2" accesskey="s" id="quick_reply_submit" /> <input type="submit" class="button_login" name="previewpost" value="{$lang->preview_post}" tabindex="3" />
</center>
</div>
</form>