Forum Moderators: not2easy
This is probably a dumb question, but I am new a css. Do I need to take out all of my old html formatting after I insert the css? If not what happens? Do I need to remove the old page properties? What about inline tags etc. Please help, I have alot of pages to do.
Do I need to take the previous formatting out of all of my pages? Example:
<body topmargin=0 bgcolor="#FFFFFF" text="#000000" link="#5F4480" vlink="#AB9BD9" alink="#E8C539">
Also, is there a css command that I can add to my external css code that will disable right clicks?
The great advantage with CSS is that you can go in steps - so you can start by linking in your external stylesheet and start replacing inline definitions such as font colors with CSS rules. You can continue using your tables-based layout for the moment.
Usually if you leave the presentational markup in place, it will override the linked CSS file - so you should work to removing all the presentational attributes across your site.
Don't forget to check your progress with the HTML validator [validator.w3.org] and CSS validator [jigsaw.w3.org], meaning that you can clean up your markup and CSS across your site. :) I'm not very familiar with Dreamweaver, but you should be able to use the global search and replace function to clean up the old markup.
disable right clicks?
This is not something CSS can do - it is a presentational language. You can use Javascript, but disabling right-click is very disruptive and annoying for end users, and has no effect in blocking the viewing of the source code or the copying of images.
As for the <table> leave them. To go to a complete tabless design will be to big of a change for now. And I don't think it will buy anything.
Good luck