Thanks for the tip.

I'll assume the margin/padding/border reset is part of a complete css reset/restyle attempt.

Yes, it is.

You don't need to set all borders to 0 - I can't think of any bordered elements other than the button offhand and you'd add in the table border settings as part of your css reset separately.

That said, the beginning of your css file be:

* {
margin: 0;
padding: 0;
}

For tables:

table {
border: 0;
border-collapse: collapse;
}

This would replace what you have and have the desired effects.

Joseph R. B. Taylor
/Designer / Developer/
--------------------------------------
Sites by Joe, LLC
/"Clean, Simple and Elegant Web Design"/
Phone: (609) 335-3076
Fax: (866) 301-8045
Web: http://sitesbyjoe.com
Email: [EMAIL PROTECTED]



Bob Schwartz wrote:
That did it, thanks a lot.

Now if I could just figure out IE6 on my quotes.

Would this be doing it?

/* Neutralize styling */
* {
margin: 0;
padding: 0;
border: 0;
}

By removing the border margin and padding from every element, your
buttons is just a grey square. You might need to be more specific
about which elements to reset.

--
Josh Nunn || 040-888-4168 || http://nunnone.com


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************





*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************< joe.vcf>



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to