Alright,
This is my first time working with CSS. I'm trying to convert my site from a table design to a CSS design. I've created a template page that all my other pages will be made from. Here is the template page - http://www.designrugs.com/css_page4.htm
I've been told that the template will do however it is by no means standard CSS. Any suggestions on how to make my site more fluid would be appreciated (espically the left side of my page).
Thanks,
Greg
Check out my new CSS Site (No tables)
Hi Greg, just a few small errors to fix first. I checked the html and css with the W3 validator, a good thing to do as you go along.
doesn't actually change the layout as such but can help with tracing other problems later.
change <style>
to <style type="text/css">
change body { margin:0; padding:0px; width:775; }to
body { margin:0; padding:0px; width:775px; }change
<img id="header" src="images/test4.gif">
to <img id="header" src="images/test4.gif" alt="test4">
or whatever the correct name is. change ALL
<a class="class3" href="">
to <a class="class3" href="#">
As I said above this is mainly to stop the vaildator getting upset when the code is checked again. As for the layout, what changes did you have in mind,:?: what do you want the new design to do differently from the previous one :?:
Check out my new CSS Site (No tables)
change
body { margin:0; padding:0px; width:775; }
to
body { margin:0; padding:0px; width:775px; }
Actually change it to
body { margin:0; padding:0; width:775px; }
Not that the other one was wrong as such, but values of 0 don't and really should not have a unit after them
Check out my new CSS Site (No tables)
Yeh, but I thought that was too obvious to mention.