Log in

View Full Version : CSS Menu Links



RichTass
10-23-2006, 10:53 AM
I am currently using the excellent "Halfmoon" CSS Menu. At the moment I have copied the code to every page of my website. How can I post links from the Menu using Inline Frames?

djr33
10-24-2006, 04:53 AM
Use the target attribute of the link tag using the frame's name....
example:
<iframe name="joe">
...
<a href="..." target="joe">
//loads in the iframe

The opposite is also possible, from the frame to the parent.
I believe that's target="_parent", and/or target="_top"