On this page…
http://www.gamexplain.com/ (click F.A.Q. and look at the top frame)
…there’s quite a lot of dead space above the images. I can’t seem to reduce it. Anyone know why this is?
On this page…
http://www.gamexplain.com/ (click F.A.Q. and look at the top frame)
…there’s quite a lot of dead space above the images. I can’t seem to reduce it. Anyone know why this is?
What browser are you using…I am on IE 6 and everything is ok…
I’m using 6 too…it’s not that it’s a ton of space, but there’s (roughly) a 10-pixel space above the images I’d like to fill up.
ok what do you use to prog your html, notepad or a cheater like front page?
I had a look at your HTML, and on all the pages you have omitted the <BODY> tag. As a rule, all HTML code that isn’t in the <HEAD> tags should be between <BODY> tags - thus:
<HTML>
<HEAD>
<TITLE>bla bla bla</title>
<STYLE>ETc.</style>
</head>
<BODY>
Everything else goes here.
</body>
</html>
Once you have the body tag in place, you can can adjust the page’s margin - this takes several different attributes depending on browser. To catch them all, this will do it:
<BODY style="margin:0px" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0">
Then you can adjust the pictures’ positioning using your table.
BTW I notice those links target the wrong frame (i.e. their own one). Persoally I am really opposed to frames, as they cause almighty hassle in so many ways (too many to go into here), but if you do use them you need to be careful of which frame you’re putting the new URL into.
Sorry, substitute “topmargin” for “rightmargin” (this is NS4.x specific).
Just another comment - hope you don’t mind my constructive criticism - is there any point in making the central frame so small? Making prospects have to operate a fiddly scroll bar to read the next paragraph might annoy them. If I were designing the site, I’d make the screen compatible an 800x600 display, and make the central frame as big as possible within this size. You don’t want to make people work too hard.
It seems to me that you are still firmly in “beginner” mode, yet desire to do funky stuff with Web Design.
Allow me to lead you to the wide world known as the Web, where there are many more appropriate places for you to ask HTML related questions, of all levels of sophistication, for beginners through to experts.
A shining example:
http://www.htmlforums.com/
Guano’s Tips Of The Day: Register. Ask lots of questions. But first, use their search engine, as your questions may already be answered. And learn CSS.
You might try the excellent HTML tutorial at Webmonky. It won’t tell you much about living underwater, but it’ll give you a good grounding in the basics of HTML.
(Welcome to the boards, Diadem - think you’d better post that again!)