If those pages aren't on the domain that the frameset is on (or even if they are), some things might not be possible. For transparency though, I'd try the the allowtransparency attribute, set it to true and apply it to both the frameset and the frames:
Code:
<frameset allowtransparency="true" rows="50%,50%">
<frame allowtransparency="true" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
<frame allowtransparency="true" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
</frameset>
It's for iframe I think, but it's worth a shot. You can also try style on the frameset page (though I have less confidence in this approach than with the attribute):
Code:
<style type="text/css">
frameset, frame {
background-color: transparent;
}
</style>
If all else fails, set the background color for the html and body elements on the pages inside the frames to transparent.
It's basically the same deal with borders. You have the border attribute, which you could set to 0. But that would probably take away the ability to resize. Still - try it if you haven't already. Throw in the resizable attribute just for good measure:
Code:
<frameset border="0" resizable="true" rows="50%,50%">
<frame border="0" resizable="true" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
<frame border="0" resizable="true" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
</frameset>
You could set the border style. That gives you more flexibility as you can set top, right, bottom, and left borders separately, which might allow you to arrive at what you're looking for:
Code:
<frameset rows="50%,50%">
<frame style="border: solid: #666; border-width: 0 0 1px 0;" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
<frame style="border: solid: #666; border-width: 1px 0 0 0;" src="http://dl.dropbox.com/u/4017788/Labs/frame_a.html">
</frameset>
Once again, you can try setting the border style for the html and/or the body elements on the pages in the frames.
The browser cache may need to be cleared and/or the page refreshed to see changes.
If you want more help, please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks