I want to add to a joomla website a sidebar like this site on the left side joomla site with sidebars
How can I do it?
I want to add to a joomla website a sidebar like this site on the left side joomla site with sidebars
How can I do it?
to open stuff in popup try
JHTML::_('behavior.modal');
image
------
<a class="modal" href="/image/path/my-image.jpg" title="Preview Image">
<img src="/images/icon-16-media.png" alt="Preview Image" />
</a>
page
----
<a class="modal" href="/component/mycomponent/?view=myview&layout=mylayout&tmpl=component" rel="{handler: 'iframe', size: {x: 600, y: 400}}" title="Display Definitions">
This is a link to display content
</a>
load div
--------
<a class="modal" href="#mydiv">
</a>
<div style="display:none">
<div id="mydiv">
</div>
</div>