In a previous post I showed you how to create a custom widget, then I showed you how to create a widget for your monthly archives, and limit the month’s that show. I am showing the past 4 months in my widget at this time.
One of my readers: Alex asked:
How did you make the archives widget to show the dates separately into two columns?
Now I will show you a CSS trick to create this effect:
First we will give the unordered list a width of 100%:
ul#archives { width:110%; }
Then we will style the <li>
nested inside.
ul#archives li { display:inline; float:left; width:120px; }
And that is it. Please make sure that you clear the float
after your closing </ul>
.
WordPress has emerged as not only a leading blogging platform but also a content management…
Properly configured, Wordpress can be an extremely effective way of designing, maintaining and managing your…
WordPress 2.7 Beta 3 has been released for your testing pleasure. Here are some of…
This little trick is really simple and easy. All you need to do is plug…
This powerful plugin is a must-have for WordPress users. With WP-DBManager you can manage your…
View Comments
Thank you, man!
nice information
This is great but is there away to make the list go 1-2 on the left column and then 3 & 4 on the right. I have spent ages trying to organize a list like that. I think it would make sense, if you have a list in 2 columns, you first read the left one and then the right one. Any thoughts or suggestions on this would be much appreciated
As far as I know, I don't know a way to do this.