PDA

View Full Version : HTML Tag Frameset Allowed?


nathanc78
Nov-06-2009, 04:49 PM
Hi,

I'm trying to break up a smugmug page of mine in HTML using the <frameset> tag. Here's the exact code:

<html>
<frameset cols="35%, 65%">
<frame src="http://h1.ripway.com/nathanc78/PortraitPageImage.html">
<frame src="http://h1.ripway.com/nathanc78/Portraits_Paper_Prints_Price_List.html">
</frameset>
</html>

It works elsewhere but not in Smugmug. Is this feature disallowed somehow? I'd use a table but what I'm looking to do is add tabs that return different screen only on half of the window and this little snippet of code was just a basics test. It's in my Portraits Test page at:
http://www.sensoryescapeimages.com/Other/Portraits-Test/10226649_VZDGw

nathanc78
Nov-06-2009, 05:09 PM
Password=test

Sorry...forgot about that

Hi,

I'm trying to break up a smugmug page of mine in HTML using the <frameset> tag. Here's the exact code:

<html>
<frameset cols="35%, 65%">
<frame src="http://h1.ripway.com/nathanc78/PortraitPageImage.html">
<frame src="http://h1.ripway.com/nathanc78/Portraits_Paper_Prints_Price_List.html">
</frameset>
</html>

It works elsewhere but not in Smugmug. Is this feature disallowed somehow? I'd use a table but what I'm looking to do is add tabs that return different screen only on half of the window and this little snippet of code was just a basics test. It's in my Portraits Test page at:
http://www.sensoryescapeimages.com/Other/Portraits-Test/10226649_VZDGw

nathanc78
Nov-06-2009, 07:35 PM
Really hoping to get some help tonight on this.

Password=test

Sorry...forgot about that

jfriend
Nov-06-2009, 08:05 PM
Hi,

I'm trying to break up a smugmug page of mine in HTML using the <frameset> tag. Here's the exact code:

<html>
<frameset cols="35%, 65%">
<frame src="http://h1.ripway.com/nathanc78/PortraitPageImage.html">
<frame src="http://h1.ripway.com/nathanc78/Portraits_Paper_Prints_Price_List.html">
</frameset>
</html>

It works elsewhere but not in Smugmug. Is this feature disallowed somehow? I'd use a table but what I'm looking to do is add tabs that return different screen only on half of the window and this little snippet of code was just a basics test. It's in my Portraits Test page at:
http://www.sensoryescapeimages.com/Other/Portraits-Test/10226649_VZDGw Framesets go at the top level of a page at a level that you don't control for Smugmug and Smugmug won't allow you to put it in a frame because some things like the shopping cart don't work in a farme. You simply can't put a frameset in the middle of a page.

Perhaps you were looking for an iframe which can go inside a page?

nathanc78
Nov-06-2009, 08:57 PM
Ok. so how can I create a secondary navigation, half page width, below the top nav solely for one page? What I'm aiming to accomplish is to have a portraits page that is divided in two down the middle. The left frame would be static and the right frame dynamic based on user's tab clicking/selection. The tabs would reveal windows with pricing and other information.

Framesets go at the top level of a page at a level that you don't control for Smugmug and Smugmug won't allow you to put it in a frame because some things like the shopping cart don't work in a farme. You simply can't put a frameset in the middle of a page.

Perhaps you were looking for an iframe which can go inside a page?