I would like to put the contents of another Joomla module into one of the layers. It looks like it should be possible but I cannot work it out. Usually to insert a module in Joomla you have something like {loadmodule dpcalendar_upcoming,EventsDpCalendar}.
If somebody could help me convert the above to what I would need to put into the customer module I would be really grateful.
This is the html I use to view the module from a custom module inside Joomla:-
<div style="font-family: arial, helvetica, sans-serif; font-size: 16pt; color: rgba(227,196,6,0.9); line-height: 60%;">
<table border="0" style="width: 100%; background-color: rgba(140, 23, 29, 0.901961);" cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 35px;" valign="middle">
<td style="text-align: left;" align="right"><span style="color: #ffcc00; font-family: arial, helvetica, sans-serif;"><span style="font-size: 14px;"> Upcoming Events</span></span></td>
<td align="right"> </td>
</tr>
</tbody>
</table>
<div style="background: rgba(85,56,33,0.05); color: #7a0303; width: 100%; height: 60%px; font-size: 14px;">
<p><span style="font-family: arial, helvetica, sans-serif; font-size: 12pt;">{loadposition position1}</span></p>
<p><span style="font-family: arial, helvetica, sans-serif; font-size: 12pt;">{loadmodule dpcalendar_upcoming,EventsDpCalendar}</span></p>
</div>
</div>
|