The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Are 2 column bullets possible?
I have been searching exhaustively the past few days to find out if it's possible to setup 2 column bullets in posts. Is this possible to do in vBulletin?
|
#2
|
||||
|
||||
CSS will do it. make each of the <li> on have a width of 50%.
|
#3
|
|||
|
|||
You can use: ul.a {list-style-type:circle;} to create a circle in your CSS.
Then anything within <li> will have a bullet / circle before it. |
#4
|
|||
|
|||
Thanks for the replies guys! Should I do this as a separate CSS rule or can I accomplish this with a BB code of some sort?
Basically I don't want it to be 2 columns be default, but there are various reviews (made as vB posts) that contain long lists of bullets and to make them look better, I figure it would be best to have two columns. So I need to find a way to selectively use them. If that's not possible, just a selective way to create 2 columns of text within vB posts could work, too. Thanks! |
#5
|
||||
|
||||
If you don't want it by default, then I would suggest a bbcode that adds a class to the list and you can write the css for that class in your additional.css template.
|
#6
|
|||
|
|||
Thanks Lynne! So I would just enclose the list with the BB code, like this:
[twocolumn]
By any chance would you be able to post an example of what should be entered into the BB code and additional CSS rule? Thanks so much! |
#7
|
||||
|
||||
Just something like this (from the article I wrote):
HTML Code:
/* For [2c] BBCode */ .twocolumn ul { float: left; width: 90%; margin: 0 0 0 1em; padding: 0; } .twocolumn li { float: left; width: 50%; margin: 0; padding: 0; clear:none; } |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|