Jump to content

Need help trying to add a nav bar and a frame


Ocean Vibes

Recommended Posts

I'm having trouble trying to add a verticle navigation bar and a frame centered in the middle of my page so that I can add text in it. Other then using tables to make a nav bar but, I want to add a border around it as well. I searched w3c and couldn't find what I was looking for. I'm trying to add a lot of frames so that I can insert images or text inside. It would be great if someone could help me. Thanks.

Link to comment
Share on other sites

I'm having trouble trying to add a verticle navigation bar and a frame centered in the middle of my page so that I can add text in it.  Other then using tables to make a nav bar but, I want to add a border around it as well.  I searched w3c and couldn't find what I was looking for.  I'm trying to add a lot of frames so that I can insert images or text inside.  It would be great if someone could help me.  Thanks.

Has this tutorial helped you:http://www.w3schools.com/html/Can you create some code, give it a shot and let us see?
Link to comment
Share on other sites

Has this tutorial helped you:http://www.w3schools.com/html/Can you create some code, give it a shot and let us see?

I know how to design web pages. The only thing I can't seem to do right now is add a table in the center of the page. I already straightend up the nav bar thing but, I can't seem to add the other one. For example:web page----> i -----------------------------i i i i i-----------------i i i i i i Frame --------> i i i i i i i i i---------------- i i i i i -----------------------------ilol the page won't let me do it ....Okay..........You see how the frame is in the center of the page. Then I want to add images, text, etc.example.GIFAlso, is there some way I can color a frame? Thanks.
Link to comment
Share on other sites

First, I've combined the four posts you had into one - you can use the "EDIT" button to append previous posts. This will save some space and make it easier for folks to read.Second, all the whitespaces that you put in your post get trimmed(removed) when the page is displayed. So its not possible for people to see what you're really trying to accomplish. However, since I have the ability to edit posts, I looked at your post in edit mode and understand what you are trying to do . . . .You want to put an <iframe> in the middle (or wherever) on your page. Here is some information on that:http://www.w3schools.com/tags/tag_iframe.aspPlay with that and let me know if that helps any.

Link to comment
Share on other sites

I'm not sure if it's an iframe.  It might be tables.  It's just to divide everything on the page.  If it is a table then, I not sure how to position it in the middle.

well as a newb myself I can say tables are extremely easy to make and you can align them anywhere you want.there are different ways to align things on your page but here is the easiest way to center a table.<.center><.table><.tr><.td>this would be the information in the table cell<./td><./tr><./table><./center>i added a period just to make the forum show, this is a very basic table and you can goto http://w3schools.com to read more about table-alignment-images, and so on.hope this helps :)
Link to comment
Share on other sites

well as a newb myself I can say tables are extremely easy to make and you can align them anywhere you want.there are different ways to align things on your page but here is the easiest way to center a table.<.center><.table><.tr><.td>this would be the information in the table cell<./td><./tr><./table><./center>i added a period just to make the forum show, this is a very basic table and you can goto http://w3schools.com to read more about table-alignment-images, and so on.hope this helps :)

Why did you add a period? You can write html plain. Did you think html written in this forum could influence stuff on the site? That would be really poor security...<center><table><tr><td>this would be the information in the table cell</td></tr></table></center>See?And even the preferred method:
<center><table><tr><td>this would be the information in the table cell</td></tr></table></center>

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...