Hi. I am trying to figure out how to integrate the dynamic URL system into my custom menu on the main page. My menu consists of a thumbnail image for each category. I want each thumbnail to link to the dynamic ZC link for that category. Here's the code for my menu in define_main_page.php:
<div id="mainMenu">
<table>
<tr>
<td ><a href="" ><img src="/images/t_platters.gif"><br>Platters and Plates</a></td>
<td><a href="" ><img src="/images/t_bowls.gif"><br>Bowls</a></td>
<td><a href="" ><img src="/images/t_smallDishes.gif"><br>Small dishes</a></td>
</tr>
<tr>
<td><a href="" ><img src="/images/t_sconces.gif"><br>Sconces</a></td>
<td><a href="" ><img src="/images/t_wallPieces.gif"><br>Wall Pieces</a></td>
<td><a href="" ><img src="/images/t_windowHangings.gif"><br>Window Hangings</a></td>
</tr>
</table>
</div>
I think I might need to use a php function in the href but I'm not sure which one.
I searched a lot for this so hopefully it's not a repost.
My Specs: I'm using ZC v1.3.9h which has not been upgraded. I have not installed any add-ons.


Reply With Quote

