[FONT=”Century Gothic”]Hello,
By default Joomla displays the “bullet.gif” image for unordered lists. Whenever I need I change it to other by specifying unordered list class. But it is not possible for Joomla Web Links menu. When I add a Web Links menu, it displays the list of categories.
It shows the list of categories as unordered with default “bullet.gif” image. I would like to change this to “arrow.gif” or “stars.gif” for this section only. I don’t want to change the default code in template css files, because it will break my custom settings.
You can find the following code generated when I see the source code. Thank you.[/FONT]
<ul>
<li>
<a href="/about/links/blogs.html" class="category">
Blogs</a>
<span class="small">
(3)
</span>
</li>
</ul>
[FONT=”Arial”]UPDATE: I solved it by myself. I edit the following file “default.php” in this location: /components/com_weblinks/views/categories/tmpl
I changed it from <ul> to <ul class=”arrow”>. That’s it.[/FONT]