dealbyethan.com:
I don't think I can do that as all the fields in forms will be come borderless as well. Any other suggestion?
Input text boxes will have a border without an explicit CSS define. However if, instead of completely removing the border attribute, you instead did this...
border: 0px solid #808080;
Then you might see something weird. Give it a shot, you can always change it back.
This sounds serious. Can you please PM me these errors and warnings? Also, how did you use Firebug and Web Developer to find out these problems? Thanks guys.
I'm seeing the warnings, but none of the errors that dbltoe mentioned. Perhaps I'm just looking at the wrong page. Regardless, HTML warnings are very common. The validators that give these errors are using a very strict definition of proper HTML; they don't "allow" older practices. For example, here's two of the the most frequent warnings I found on your homepage...
line 33 column 109 - Warning: <br> element not empty or not closed
line 34 column 80 - Warning: <img> element not empty or not closed
The problem here? There's no forward slash "/" before the tag closes ">". That's part of the most recent HTML standards revisions, but will work perfectly fine in any browser. It'll be some time before you'll degradation because of issues like these.
Assuming that the border is the only issue you have with your template, and the solution I suggested works as described, you should be good to go. dbltoe has a point in that you want to minimize the number of warnings (and eliminate errors) that your pages generate, but that shouldn't stop you from launching your site (which does look very slick otherwise, btw :thumbsup: ).