Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How would you implement something like this in CSS? And yes, I definitely need the iframe.

http://i.stack.imgur.com/ReZ5c.png

The iframe should have a fixed position:

  • top: 160px
  • right, bottom, left: 10px

The image at the top should have a 100% width and a 150px height.

Sorry for not posting my first ideas, I tried this:

CSS

html,body {
    margin: 0;
    padding: 0;
    height: 100%;
}

#headerImage {
    height: 150px;
    width: 100%;
    border: 1px solid black;
}

#applicationFrame {
    border: 1px solid black;
    position: absolute;
    top: 160px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: 100%;
    height: auto;
    min-height: 100%;
}

HTML

<img id="headerImage" src="" />
<iframe id="applicationFrame" src="http://www.google.de">
</iframe>
share|improve this question
3  
You should definitely use some CSS to make that layout. I'd also suggest some HTML. Good luck! – Billy Moat Aug 28 '12 at 22:09
1  
what have you tried? – ews2001 Aug 28 '12 at 22:18
1  
Do you really think someone is going to just code this for you? Have you tried anything on your own? – relentless Aug 28 '12 at 22:19
No I don't think so, this is my second post on stackoverflow and I accidentally forgot to post my code. – icepuma Aug 28 '12 at 22:39

closed as not a real question by thirtydot, Jim Garrison, Fraser, MichaƂ Górny, Favonius Aug 29 '12 at 10:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Spiderman rules: Everybody gets one.

http://jsfiddle.net/MaxPRafferty/eFbcj/5/

In light of Paul's appropriate criticism of me doing your work - it took me maybe 1 minute, and probably wont get you very far. However, if and when you use this and discover that it is inadequate for your needs, the following two links should provide a start for how to implement very basic features in HTML and CSS:

http://w3schools.com/html/default.asp

http://w3schools.com/css/default.asp

After reading through those, if you discover that you have a few more questions throw a "SITE:stackoverflow.com" into google, or use the box in the upper right and see if you cant get an answer. If you can't (I suspect you can), then post a question. But like I said, everybody gets one. Don't expect anyone here to do work for you that a quick google or two could have given the answer to.

share|improve this answer
3  
Please don't encourage him. – relentless Aug 28 '12 at 22:21
1  
Yeah, it was just so easy. Figured I would save everyone else a lot of time looking at this and thinking of how to tell him 'no'. And hey, maybe this will get plugged in, and he will discover he has an actual issue to discuss down the line. I'm a hopeless optimist. – MaxPRafferty Aug 28 '12 at 22:22
1  
I understand, but it's the whole, "teach a man to fish" thing. – relentless Aug 28 '12 at 22:26
Edited to be less dismissive ;) – MaxPRafferty Aug 28 '12 at 22:28
1  
@MaxPRafferty - W3Fools :( – Roddy of the Frozen Peas Aug 28 '12 at 22:40
show 2 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.