Need a list box for my blog
-
How can I have a list box that we can add a number of things to remember in order to our sidebar?
-
Add the HTML code into a text widget at Dashboard -> Presentation -> Sidebar widgets and drag and drop into into your sidebar.
What kind of “list box” are you talking about, by the way? Like one with li tags is fine. Something based on javascript or iframes is not and will be stripped out due to security concerns.
-
Adding to drmike, you can have the list ordered (1,2,3,etc) with:
<ol> <li>Your first point</li> <li>Your second point</li> </ol>and then have an unordered list with:
<ul> <li>Your first point</li> <li>Your second point</li> </ul>Hope that helps.
Trent
- The topic ‘Need a list box for my blog’ is closed to new replies.