What I do for making a horizontal list is put the following into your about me section:
Code:[list=1][url=LINK]Text[/url][/list]
You'd make basically a custom section
only for these links.
Then, from there, you can use the following code to adjust the links in question.
Fixed Widths - All links have the same width and height.
Code:.about ol a {display: inline-block; height: _px; width: _px; background: #xxxxxx; color: #xxxxxx;}
Varying Widths - Links have the same heights but different widths depending on amount of text.
Code:.about ol a {display: inline-block; height: _px; padding-left: _px; padding-right: _px; background: #xxxxxx; color: #xxxxxx;}
Then, if you have links in other custom sections that you don't want like this, just make a separate code for them to cancel the other code out. For example...
Code:.about ol ol a {display: inline; padding: 0px; background: transparent; color: #xxxxxx;}

by
Sam » Sun Dec 18, 2011 1:02 am