i need html help
unless someone knows how to put a frame right in the middle of the page in the white area, so that the links in the navigation bar will open in that frame

where content goes into
otherwise i am looking for a site that has this feature
i know there are plenty but i cant seem to think of one right now

where content goes into
otherwise i am looking for a site that has this feature
i know there are plenty but i cant seem to think of one right now
Last edited by Grifter; Jun 6, 2006 at 11:00 PM.
Originally Posted by AF
Luckily for you, I'm an HTML pro :hsugh:
You'll need to use stylesheets to accomplish what you want. Just google it and you'll find it.
Put this in between your <head></head> tags and then inside your <body></body> tags you use 2 different divs. And you'll have a box in the middle of your page whether in FF or IE.
IF confused lemme know.. I'll send you my file.
<div class="ie_fix">
<div class="box">
Blah Blah Blah
</div>
</div>
-----
<style type="text/css">
input {
border: 1px black solid;
font: 8pt courier;
background-color: #EEEEEE;
margin-bottom: 1pt;
}
a {text-decoration: none;}
.box {
border: dotted 1px black;
width: 500px;
padding: 10px 0px 0px 10px;
text-align: left;
margin: 0 auto;
border: 1px dotted black;
}
.ie_fix {
width: 100%;
text-align: center;
}
</style>
---
Frames are the devil. My suggestion is to use PHP includes.
http://www.netcode.net/tutorials/php...p_includes.php
http://www.netcode.net/tutorials/php...p_includes.php
no, if you want links to open up inside the frame, you can't use only CSS and HTML for this. you can either use traditional HTML frames, which isn't a good idea, or you can try using an inline frame: <iframe>. i don't have time to write out any code for you right now, so all i can say is look into it. it'll be a lot easier to setup than regular HTML frames, and you can use CSS to style it. cross-browser compatibility may be an issue, although i'm not sure. it isn't officially part of the HTML standard.
good luck!
good luck!
DIV Overlay
Here is a step by step for doing a div overlay on a myspace page, but you should be able to use the concept for what you are doing.
http://forums.offtopic.com/showthread.php?t=2361613
Here is a step by step for doing a div overlay on a myspace page, but you should be able to use the concept for what you are doing.
http://forums.offtopic.com/showthread.php?t=2361613
__________________
99 Integra GSR
06 TSX
duck squad member #00003
99 Integra GSR
06 TSX
duck squad member #00003
Originally Posted by 94civicEX
DIV Overlay
Here is a step by step for doing a div overlay on a myspace page, but you should be able to use the concept for what you are doing.
http://forums.offtopic.com/showthread.php?t=2361613
Here is a step by step for doing a div overlay on a myspace page, but you should be able to use the concept for what you are doing.
http://forums.offtopic.com/showthread.php?t=2361613


