digitalaorta has summarized my next steps on my site. Move away from using tables and use css. Like I told Spater: I checked out HTML utopia : designing without tables using CSS / by Dan Shafer from my school library.
Very good decision!
So Far I'm already using external CSS. I'm hoping the book progresses to more advanced things you can do CSS....
You shall always aim to have an external css file. Having it inside the html document will remove the base idea of css designing.
If anybody can list some advance things you can do with css other than changing properties in an external document like font and color...please let me know so I can look for that when i'm reading the book.
All the links I gave in my first post should be able to sum that up. It would simply take way to long for me to post all the good stuff you can do with css. Not to say it would be stupid to do it when as said all of them are in the links 
Also I'm being told not to use iframes. How do I bring data from other pages into my design with out using some type of frame.
Would I have to create a page including everything like my design and with the content on it using a div. If thats the case that kinda sucks because with frames I can import data into the exact place...whats so wrong with that.
Since if you code a site correctly with css and divs then the document usually don?t look more complex then this between the body tags: (just a little bit more of it)
<ul id="something1">
<li class ="menuclass"><a href="#linkhere"></a></li>
<li class ="menuclass"><a href="#linkhere"></a></li>
<li class ="menuclass"><a href="#linkhere"></a></li>
<li class ="menuclass"><a href="#linkhere"></a></li>
</ul>
<div class=?something2?>blahblah</div>
?it shouldn?t be that bad to have one page for each part of the site. (Since the images and the design css is already loaded and won?t have to load again)
Reasons why iframes aren?t that great that you might think they are at first is because of several reasons and I don?t know them all but I can share some that is usually discussed on here:
If someone comes to your site trough a search engine (i.e. google) then it will usually links to the content. If the content isn?t in the same link as the design/menu then all they will see is a plain text document and most likely leave without even looking for a way to get to the main page.
Also they load much slower then the main frame page.
They simply brakes your site up in more pieces then healthy and then needed.
If you feel that the suggestion I gave is far from enough then I suggest you to look at some php or similar (usually php) to solve the headache without nasty iframes.
From what I understand about divs is that all it doing is layering your page. z-index 1,2,3,4,5,6 to infinity layers(i think theres a limit which you'll never get to) So whats so good about divs.
Here is a div in pure code?
? And here is a table in pure code:
<table>
<tr>
<td>
</td>
</tr>
</table>
As you may see you would get the code so much more flexible and so much cleaner. Another thing is that with divs (witch isn?t anything more then containers), is that they don?t tell anything about how or where the content (if any of course) between the div tags shall be. It leaves that for the css file. In other words, when it is time to redesign your site you won't have to touch the html code to do the job. If you use tables then you will work mostly with that. The reason for that is because the tables is deciding how and where the content shall be and just leaves simple futures of the css such as text and link colors to spare.
Layer heights is also controlled by the css file and you are usually not using that to much either. You have been getting the wrong image of divs. You use layers when you want the content in XXX div to be above the content in XXXX div. It isn?t harder then that. Your current design would not have to use any layer heights from what I can see tough.
Now if you integrate php with CSS(if you can design without tables) I can see how you could use :
(following are different methods to include a different file into the current file)
include
require
include_once
require_once
to replace an iframe. Because I can make a table or in this case CSS table and use and include to include my other html document
Exactly, just remember to exchange the tables with a div instead. I can?t say anything about the php code really because I?m not as hot on that topic as others here are but I think that should be the way kind of.
Heres my plan: I don't think CSS is going take me to long to learn.
what sites or what books do you recommend digitalaorta to learn about divs
Css/divs is piece a cake
. Good sites as mentioned before are the ones I linked to in my first post on this thread (then you can follow the links trough those pages for even more css/divs knowledge).
What I've decided since digitalaorta said that my portfolio page was not as attractive as my first page. Is that here is where I will practice with Divs and CSS Its not a large portfolio so it shouldn't take long.
Nothing to say about this quote? I just had to quote them all 
For Now I'll keep reading to book about CSS and learn about tables hopefully I can get some help on finding out about DIV tags.
Once again just follow the light (links in my first post usually works). Stay away from tables unless it is tabular data, forums or similar.
If anybody know how to include external files into a currently viewed file like a frame or iframe can do ....please let me know... If you think my way of thinking is old please suggest what new ways there are in doing this same effect....
If you give Mr. Search button a click and search for it then I?m sure you will find more hits then you can handle on a week 
/Spater:p
___________________
Neversidian, your staff is broken.
Last edited by Simon, March 27th, 2004 05:20 PM (Edited 1 times)