Hi all, this is my first post here so be patient with me please ![]()
I’m pretty fluent with XHTML and CSS but a total newb when it comes to php.
What I want to do is the following:
In my source code (of weblog.php) the categories I defined show up like this
<div id=“category”>
<a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_2_1”>food</a><br />
<a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_1_1”>portfolio</a><br />
<a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_3_1”>web</a><br />
</div>
As you can see I’ve already wrapped them in a div to be able to style them.
I want them to appear like this:
<div id=“category”>
<ul>
<li><a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_2_1”>food</a></li>
<li><a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_1_1”>portfolio</a><li>
<li><a href=“http://www.pilatesworks.be/blog/weblog.php?id=C0_3_1”>web</a></li>
</ul>
</div>
So, just in an unordered list without any <br> tags.
Question is how do I do this? Do I modify weblog.php and if so how?
Any and all input appreciated ![]()
