Log in

View Full Version : How to remove "1. 2. 3." in vBulletin message


michaelbang
05-03-2012, 08:50 AM
When a non-registrered user tries to view certain areas of my forum, he/she is prompt with an vBulletin Message. So far so good. But, I would like to put a picture they instead of the standard text. Again, no problem.

BUT - how do I remove the "1. 2. 3." to the left of the text? To insert an image instead of the text, I've just used an image tag <img> in the phrase manager, but then the numbers 1 - 3 still appears left of the image.

What to do?

http://www.michaelbang.com/images/vbulletin-message.jpg

RobbieZ
05-03-2012, 11:11 AM
There are a few templates that vB calls to to produce such a notice, if you are wanting to change every one then you need to do your edits in each template alike.

Search for 'standard_error' in your style manage > search in templates

You should see
STANDARD_ERROR
STANDARD_ERROR_LITE
STANDARD_ERROR_LOGIN

scroll down in each template and find that start of your phrases which looks like this:

<ol>
<li>{vb:rawphrase not_logged_in_fill_in_form}</li>
<li>{vb:rawphrase may_not_have_sufficient_privileges}</li>
<li>{vb:rawphrase administrator_may_disabled_account}</li>
</ol>

Change the HTML list tags to dd like so <li></li> -> <dd></dd>

remember to change each non child style you are also using aside from default :)