Link to home
Start Free TrialLog in
Avatar of CanUHelpMe0
CanUHelpMe0

asked on

HTML - Frames - how to make the heading frame to show the full pictures in iit?

I ahve 2 pictures, 1 on top of the other that I want them to span the width of the header frame on a page with header, left and right columns in the center and then footer at the bottom.

I have the pictures set to 100% of the frame.  But how do I get it to resize the header / top frame so it shows the full height of the pictures?  it's cutting off the bottom of the bottom picture.

thanks!
Avatar of TheQuietShadow
TheQuietShadow
Flag of United States of America image

can you paste your code here?
ASKER CERTIFIED SOLUTION
Avatar of Anil Golamari
Anil Golamari
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CanUHelpMe0
CanUHelpMe0

ASKER

here's the code.  being that vertically, there's 3 frames - the header with just a picture in it (and the picture is set to span the frame horizontally), the body which would vary in height (what ever's left over from top and bottom) and the bottom has a bunch of links (which dupes the menu on the left frome.  maybe just do away with the bottom.  but how do you say - top frame size to fit the height of picture (which can change based on how wide the frame is / how wide the picture will be), bottom must be x pixels to fit the text (I have that figured out : ) and then the body height is whatever left over.

thanks!



<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Lions Club</title>
</head>

<frameset rows="22%,66%,84" framespacing="0" border="1" frameborder="1">
      <frame name="top" scrolling="no" noresize target="contents" src="header.htm">
      <frameset cols="200,*">
            <frame name="contents" target="main" src="menu.html">
            <frame name="main">
      </frameset>
      <frame name="bottom" scrolling="no" noresize target="contents" src="footer.html">
      <noframes>
      <body>

      <p>This page uses frames, but your browser doesn't support them.</p>

      </body>
      </noframes>
</frameset>

</html>
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
have to agree with pattyn on this one.....