Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

frameset

Status
Not open for further replies.

mayu03

Programmer
Oct 3, 2003
91
US
I have following code where my frameset is on the left side. I would like to move it to the right. I've try the align=right, but it is not working. can you help me?
<frameset cols=&quot;180,*&quot; border=&quot;0&quot;>
<frame src=&quot;thumbnails.html&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;>
</frame>
 
Try this:

Code:
<frameset cols=&quot;*,180&quot; border=&quot;0&quot;>
<frame src=&quot;thumbnails.html&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;>
</frame>

By simply swapping the order of the &quot;180&quot; and the &quot;*&quot;, that should place your thumbnail frame on the right-hand side.

Hope this helps!

Dan
 
Hmm.. I don't know what I was thinking!

You need to have a left frame src as well... Something like:

Code:
<frameset cols=&quot;*,180&quot; border=&quot;0&quot;>
	<frame src=&quot;about:blank&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;>
	<frame src=&quot;thumbnails.html&quot; scrolling=&quot;yes&quot; border=&quot;0&quot;>
</frame>

Dan

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top