How to make your bullet list appear side by side

27
1.1K followers
Updated

UPDATE => Feb. 27/2015 @ bottom of post

Hey guys, here's a little something I've learned recently. I wanted to make note of it for my own future reference and figured this way not only saves it for my own reference but makes it available for everyone else too. Hope this helps.

My last post required a really long bullet list and I wanted the items listed in side by side columns instead of every item being one beneath the other.

EXAMPLE:

The list as it appears:

• Item # 1

• Item # 2

• Item # 3

• Item # 4

• Item # 5

• Item # 6

• Item # 7

• Item # 8

The list as I want it:

• Item # 1 • Item # 5

• Item # 2 • Item # 6

• Item # 3 • Item # 7

• Item # 4 • Item # 8

To do this, I went into the TEXT section of my post in Wordpress and this is how the first list was coded.

<ul>
<li> Item # 1</li>
<li> Item # 2</li>
<li> Item # 3</li>
<li> Item # 4</li>
<li> Item # 5</li>
<li> Item # 6</li>
<li> Item # 7</li>
<li> Item # 8</li>
</ul>

The coding I used to make two side by side columns is:

<div style="float: left;">

Enter your content here.

</div>

This is what the coding now looked like:

<div style="float: left;">
<ul>
<li> Item # 1</li>
<li> Item # 2</li>
<li> Item # 3</li>
<li> Item # 4</li>
</ul>
</div>

<div style="float: left;">
<ul>
<li>Item # 5</li>
<li>Item # 6</li>
<li>Item # 7</li>
<li>Item # 8</li>
</ul>
</div>

If you want your list to look like this:

• Item # 1 • Item # 3 • Item # 5 • Item # 7

• Item # 2 • Item # 4 • Item # 6 • Item # 8

The coding is the same as the previous "2 column post" but you need to make 4 divisions.

Here is what that code would look like:

<div style="float: left;">
<ul>
<li> Item # 1</li>
<li> Item # 2</li>
</ul>
</div>

<div style="float: left;">
<ul>
<li>Item # 3</li>
<li>Item # 4</li>
</ul>
</div>

<div style="float: left;">
<ul>
<li> Item # 5</li>
<li> Item # 6</li>
</ul>
</div>

<div style="float: left;">
<ul>
<li>Item # 7</li>
<li>Item # 8</li>
</ul>
</div>

I hope I've explained this in an easy enough and visual enough way for anyone to understand. For me, this seems pretty easy to follow but I have done a little bit of programing in high school and college so I'm not reading it with beginner eyes so to speak. If something isn't clear, let me know and I'll try to make it better. Thanks guys and I wish you all great success.

UPDATE => Feb 27/2015

I don't know why but in one post, the info above works just fine but in the post I've been working on tonight, It just wouldn't work very well at all. After a few hours of playing around I found a slightly different way of doing this.

<div style="width: 500px;">
<div style="float: left; width: 200px;">
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
</div>
<div style="float: left; width: 300px;">
<ul>
<li>Item 5</li>
<li>Item 6</li>
<li>Item 7</li>
<li>Item 8</li>
</ul>
</div>
</div>

&nbsp;

&nbsp;

&nbsp;

The "&nbsp" is the code that is put there every time you hit ENTER. I had to put those there because the next paragraph appeared beside my bullet list instead of under. Not sure why but this did fix it.

Hopefully one of these two methods have help you achieve your goal, If not keep checking this post cause I will be updating it every time I find a new and/or better way of doing this. If anyone has found another way, feel free to share.

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training

Recent Comments

30

I would have done with this a couple of months back instead I installed WPColumns which work great but alas it is a plugin. Thanks for sharing. Olive

Hey Olive, cool I didn't realize there was a plug in. Nothing wrong with plugins either. I have one that I use for fonts. I could code it but the plugin is faster to use.

Dan I love my plugin and I have one for fonts too but I have it disabled at the moment. The only problem is, if you have too many plugins they slow your site down so you need to decide which ones you need most. The AdvancedWPColums plugin is fab though. Also, you can always set up a practice siterubix to try things out before you decide to use on your site. Olive

Thank you for your effort Dan. Such things are useful. Bookmarked. Jovo

I am reading this with beginner-eyes and it's totally clear and understandable, thanks, bookmarked

That's awesome, Thank you for sharing Dan:)

Awesome! Thanks for sharing. I didn't know this was even possible. :D

very cool, thanks!

This is great! Thank You! Christa :)

Hey no problem Erik, glad the post was helpful. Let me know how it works out.

will do. for now i have it in a word document attachment, but people may get weird-ed out by that. so ill definitely have to restructure it with what you've shown here :)

I'm gonna add this to my favorites. thanks!

No prob 777getgoing.

thats awesome! thank you :D. i was making a page the other day that needed that and i couldnt get the formatting to work. thank you for sharing :D

See more comments

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training