NickCat11
Active Member
- Reaction score
- 0
I kid of course Nick, but think of it as "imitation is the sincerest form of flattery"![]()
That's another way of looking at it

I kid of course Nick, but think of it as "imitation is the sincerest form of flattery"![]()
That's another way of looking at it![]()
With that said, really, what harm does it do to copy certain things from websites? Frankly, I love the website of one formerly active Technibble member. As they do not have a copyright on their page, and it seems to have been abandoned early last year, I don't think I'd hesitate to copy their design. We aren't competing in the same geographic area, so what's the big deal?
Nice to see it all resolved amicably. I thought you dealt with that very civily Nick.
Glad it all got worked out for you Nick.
elance.com, babyLOL or just hire a technical writer!
Actually I still use tables too. Its fine for small projects. CSS is wonderful for a larger projects and for site-wide conformity, but when I want to make a few pages quite often I will do it with basic tables and I can code it by hand.
It's not a good idea to use tables for presentation even on small sites and there is a remote possibility that accessibility issues make it actually illegal. You could stand accused of discriminating against people who are blind. When you use tables, all semantic meaning is lost and speech only browsers simply cannot cope.
But even if that was not the case there are distinct advantages to using CSS not least that the smaller page sizes make them quicker to load, you are also building in future flexibility.
Source code is much easier to read and that they are much more search engine friendly ( which is a completely different issue to SEO) as spiders can read the whole site.
I think there is a world of difference to doing something for yourself in tables against advertising yourself as a web designer and producing sites for clients using tables in 2009.
<div id="page">
<div class="wrapper">
<div id="header">
<div id="logo"></div>
<div id="features"></div>
</div>
</div>
<div class="wrapper">
<div id="navigation"></div>
<div id="search"></div>
</div>
<div class="wrapper">
<div id="article"></div>
<div id="aside"></div>
</div>
<div id="footer">
<div class="wrapper">
<div id="copyright"></div>
<div id="legal"></div>
</div>
</div>
</div>
html, body, div, span, table, thead, tr, td, ul, ol, li, img {
margin:0;
padding:0;
border:0;
outline:0;
line-height:1;
font-size:100%;
}
body {
text-align:middle;
}
page {
}
.wrapper {
text-align:left;
width:960px;
clear:both;
}
#logo {
float:left;
clear:left;
width:320px;
}
#features {
float:right;
clear:right;
width:640px;
}
#navigation {
float:left;
clear:left;
width:640px;
}
#search {
float:right;
clear:right;
width:320px;
}
#article {
float:left;
clear:left;
width:640px;
}
#aside {
float:right;
clear:right;
width:320px;
}
#copyright {
float:left;
clear:left;
width:640px;
text-align:left;
}
#legal {
float:right;
clear:right;
width:320px;
text-align:right;
}