hybridspecia wrote:
I've created a photo gallery using CS2...and I've been searching online for 3 days----and I CANNOT find the code to have the gallery embedded in the webpage... I know if i use <a href> it will open the gallery up in a NEW window...but I would like it to be inside an HTML table on my webpage, and NOT on it's own separate page...
If someone can please help me with the code that I would need to paste into my webpage..I would GREATLY appreciate it!
Or maybe you can use <iframe> in your homepage like this:
<iframe src="gallery.html" scrolling="no" frameborder="0" width="191" height="120"></iframe>
So the content of the page gallery.html will be included in your homepage.Specify the width and height for the iframe...
That is if i understood your problem correctly