PDA

View Full Version : [vb5] 2 questions... how do I make a signature? Also, main forum question...


NeoDB
05-12-2017, 11:12 PM
Dumb question: how do I make myself a signature on in vBulletin 5? I simply can't find the option for it anywhere.

Not so dumb question: how do I make it so that the individual forums' banner images I set up do not appear on the main page?
This the main forum page: http://www.highlander-community.com/forum/

I want those banners to only appear within the forums themselves, not on the main page like that.

noypiscripter
05-13-2017, 07:49 AM
For adding signature

1. Click your username at the upper right corner then choose User Settings.
2. Click Account tab
3. Check "Show Signatures" checkbox.
4. Click Edit Post Signature. A dialog with editor will show up where you type your signature.
5. Click Save
6. Click Save Changes.

For the other one, since you added the banners in the forum description, they will appear in the forum directory on homepage and in each forum channel page itself. A workaround is to hide the banners in the homepage via CSS. Add this in css_additional template in AdminCP.

.forum-desc img {
display: none;
}