I am new to Joomla and have been asked to convert a non-Joomla site to use Joomla.
The site has a structure similar to an accordion menu, where the page content appears under the link to the page, like this:
Clicking on Article 1 Link:
╔════════════════╦══════════════════════╗
║ Article 1 Link ║ ║
║ ║ Content of article 1 ║
║ Article 2 Link ║ ║
║ Article 3 Link ║ ║
║ Article 4 Link ║ ║
║ Article 5 Link ║ ║
╚════════════════╩══════════════════════╝
Clicking on Article 3 Link:
╔════════════════╦══════════════════════╗
║ Article 1 Link ║ ║
║ Article 2 Link ║ ║
║ Article 3 Link ║ ║
║ ║ Content of article 3 ║
║ Article 4 Link ║ ║
║ Article 5 Link ║ ║
╚════════════════╩══════════════════════╝
Is it possible to do this in Joomla 2.5? I am struggling to understand how, since you can have a menu module, but how would you display article content within that module?
The article content will ideally be within the same <li> of the menu item, so in html view:
<ul>
<li><a href="#link1">Link 1</a></li>
<li class="current"><a href="#link2">Link 2</a>
<div>
<!-- ARTICLE CONTENT FOR Link 2 -->
</div>
</li>
<li><a href="#link3">Link 3</a></li>
</ul>