The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
How to reduce the font of the inscription: "Show signature"
Hi! How to reduce the fontof the inscription: "Showsignature" in thequickresponseon the left?Thank you!
Привет! Как уменьшить шрифт надписи: "Показывать подпись" в окне быстрого ответа слева? Спасибо! |
#3
|
||||
|
||||
You can add this to your additional.css template.
HTML Code:
.showsignature label {font-size: 11px;} |
3 благодарности(ей) от: | ||
puertoblack2003, Stratis, SWSUSA |
#4
|
||||
|
||||
Thank you all for the answers.
Всем большое спасибо за ответы. HTML Code:
.showsignature label {font-size: 12px;} .openclose label {font-size: 12px;} Added these codes in the template additional.css Добавил эти коды в шаблон additional.css |
#5
|
||||
|
||||
Quote:
Добавление кодов в шаблон additional.css удобно, но отрицательно сказывается на скорости загрузки страниц. Нужно изменять код HTML. |
#6
|
||||
|
||||
additional.css gets loaded anyway no matter what. (I think)
57 bytes of data does not make any difference in speed it is not like 57 mb. HTML Code:
.showsignature label, .openclose label {font-size: 12px;} |
Благодарность от: | ||
MarkFL |
#7
|
||||
|
||||
Quote:
Анализ сайта https://gtmetrix.com в категории "Inline small CSS" показывает 67%, а не 100% из-за этих двух кодов в шаблоне additional.css. |
#8
|
||||
|
||||
Try adding this to the last line of vbulletin.css template and remove it from additional.css
|
#9
|
||||
|
||||
Template SHOWTHREAD. Шаблон SHOWTHREAD.
It was like this (было так): HTML Code:
<ul class="checkradio"> <li><label for="cb_signature"> <input type="checkbox" name="signature" id="cb_signature" value="1" checked="checked" tabindex="1" /> {vb:rawphrase show_your_signature} </label></li> </ul> To do so (сделал так): HTML Code:
<ul class="checkradio"> <li><label for="cb_signature"> <input type="checkbox" name="signature" id="cb_signature" value="1" checked="checked" tabindex="1" /> <span style="font-size:12px">{vb:rawphrase show_your_signature}</span> </label></li> </ul> It was like this (было так): HTML Code:
<ul class="checkradio"> <li><label for="cb_openclose"> <input type="checkbox" name="openclose" id="cb_openclose" value="1" tabindex="1" /> <vb:if condition="$show['closethread']">{vb:rawphrase close_this_thread}<vb:else />{vb:rawphrase reopen_this_thread}</vb:if> </label></li> </ul> HTML Code:
<ul class="checkradio"> <li><label for="cb_openclose"> <input type="checkbox" name="openclose" id="cb_openclose" value="1" tabindex="1" /> <vb:if condition="$show['closethread']"><span style="font-size:12px">{vb:rawphrase close_this_thread}</span><vb:else /><span style="font-size:12px">{vb:rawphrase reopen_this_thread}</span></vb:if> </label></li> </ul> Font decreased. HTML-code is valid. Шрифт уменьшился. HTML-код валидный. |
#10
|
||||
|
||||
OK that will do the trick.
Advice/Suggestion: Whenever you update your forums to the new version of vbuleltin these edits might get over written OR if not over written then you will end up with outdated template ... This makes it complicated to manage the forums hence additional.css is the easy option in the long run. |
Благодарность от: | ||
MarkFL |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|