Hi,
I am very new to this and I suspect that this will be very simple but I don't have enough knowledge to work it out. I have googled and searched the forums but cannot find specifically what I am after.
I haven't got a link because it is on a local host, so I apologise for the inconvenience.
I have my EZ Pages listed in a menu:
Trends :: Wishlists :: Gift Certificates :: About Us
I would like to add an extra EZ Page in a drop-down menu under About Us called "Why buy from us".
It would be good if this list was then editable in the admin to add more links etc.
1) I have searched the forums for a way of seperating the EZ Page links in order to style some of them in a drop-down but cannot find the answer
2) I then tried putting them in a <ul> and hard coded it like this:
<div id="navEZPagesTop">
<ul>
<?php for ($i=1, $n=sizeof($var_linksList); $i<=$n; $i++) { ?>
<li><a href="<?php echo $var_linksList[$i]['link']; ?>"><?php echo $var_linksList[$i]['name']; ?></a></li><?php echo ($i < $n ? EZPAGES_SEPARATOR_HEADER : '') . "\n"; ?>
<?php } // end FOR loop ?>
<li class="extraUL"><a href="<?php echo zen_ez_pages_link(12) ;?>">About Us</a>
<ul>
<li><a href="<?php echo zen_ez_pages_link(15) ;?>">Why Buy From Us</a></li>
</ul>
</li>
</ul>
</div>
This would work fine, except that the site is bilingual and I need the name of the link to pull in the information from the name of the EZ Page
I really hope this makes sense!
Thank you
I have attached screen shots


Reply With Quote
