If like me you've moved your content from a Wordpress based blog to a nice shiny MT install you may be wondering about how best to display the pages, such as "about me" etc.,
The default widget for these pages will display them, but as an unordered list.
While you could play with the HTML and get them to work in a different way a much neater solution is to simply change the CSS slightly.
The template you need to fiddle with is: base_theme.css
To get a nice horizontal output simply add in the following CSS into it:
Of course if you're a CSS wizard you can probably work out how to do other cool things easily
Thanks to James from Forbairt Media for the CSS tip (I'm useless with CSS!)
The default widget for these pages will display them, but as an unordered list.
While you could play with the HTML and get them to work in a different way a much neater solution is to simply change the CSS slightly.
The template you need to fiddle with is: base_theme.css
To get a nice horizontal output simply add in the following CSS into it:
ul.widget-list li { float: left; margin: 10px}to change the spacing simply tweak the margin value Of course if you're a CSS wizard you can probably work out how to do other cool things easily
Thanks to James from Forbairt Media for the CSS tip (I'm useless with CSS!)

