[WSG] Strange things indeed

2008-04-26 Thread Bob Schwartz
I have a site in progress that is giving me a couple of problems: 1. in all browsers, I seem to have accidently styled away (without styling them at all) the default form button look, but I can't find the cause. The only styles that I can see that might have an affect are these, but

Re: [WSG] Strange things indeed

2008-04-26 Thread Josh Nunn
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 ||

Re: [WSG] Strange things indeed

2008-04-26 Thread Bob Schwartz
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

Re: [WSG] Strange things indeed

2008-04-26 Thread Joseph Taylor
I'll assume the margin/padding/border reset is part of a complete css reset/restyle attempt. 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

Re: [WSG] Strange things indeed

2008-04-26 Thread Bob Schwartz
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