View Full Version : css layout help please!!!


lvbunny
01-02-2006, 12:45 AM
using the css layouts that is on this site. I know how to put my links in the menu section of the layout but how do I get the links to open up in the content section of the layout? Do I use an Iframe or what should I use?

Thanks.

salomeyasobko
01-02-2006, 12:56 AM
Yes, you can use iframes for that. Just target the links to the name of the iframe.

Example:

<iframe name="sallybobo" src="whatever.html"></iframe>

<a href="whatever.html" target="sallybobo">click here</a>


You could also achieve the same effect with PHP includes.. but that can be a lot of work. If you're still a beginner in HTML i would just stick with iframes, for now at least.

Hope that helps! :)

lvbunny
01-02-2006, 01:07 AM
Thanks, yeah I'm a beginner so I think I'll stick with whats easy LOL