Page 1 of 1

CSS drop down menu

Posted: 13 Dec 2007, 12:34
by CesarePlay
I have code for a css drop down menu but I want to know if it is possible to link it to anchors in another page. There are many different aspects in the other page and the drop down seems better so you click on that link and it goes to that pages anchor for it. Can anyone help with this? I know it is possible for the same page but not sure how to do it for outside pages. Also is it possible to make flash drop down menus for the same thing?

Posted: 13 Dec 2007, 13:18
by stewy_w
anchors work the same whether they are in the current page or other page difference is if they r in the

current page

Code: Select all

<a href="#myanchor">clicky</a>

another page

Code: Select all

<a href="www.site.co.za/otherpage.html#myotheranchor">clicky</a>

Posted: 13 Dec 2007, 13:29
by CesarePlay
Thanks for that.