I think I'm having a blonde moment because I can't seem to get the bit of CSS/HTML working. When I make changes to the code such as cellpadding and cellspacing in the table attribute, it doesn't do anything to the form itself. I've even tried changing something like BGCOLOR and nothing happens (I even added a second table thinking it may have had something to do with the form tags but no luck there either). I think it has something to do with inheritance but I can't seem to figure it out -- any ideas?
If your adding inline styles ie a background color for your table row and its still not working, then css file path is probably not the issue, nor should be any inheritance.
Can you post all of your code? or better a link to your site so I could look at it in firebug.
I think you need to restate your problem. What do you mean by making changes to the table doesn't effect the form? I made a quick page from your code and I have full control over the table using CSS.
Agree we need more detail about what your issue is. I attached a screen (from FF) of your identical code (I included your css within the html document inside
Agree we need more detail about what your issue is. I attached a screen (from FF) of your identical code (I included your css within the html document inside
He has another css file called reset.css that is over riding many tags when he tries to style them. Not sure if this is a wordpress theme or not. If he gives his form and or table elements an id or class then styles that, then it can be resolved I think.
That's not a bad file to use after you have read it and understood it. It is meant to setup defaults for the browser to use which is supposed to 'normalize' the display from browser to browser. It should be the first stylesheet followed by your style sheet. The other way is trouble. Everything you want is overridden.
He has another css file called reset.css that is over riding many tags when he tries to style them. Not sure if this is a wordpress theme or not. If he gives his form and or table elements an id or class then styles that, then it can be resolved I think.
Where are you seeing a reference to reset.css?
Who knows what is in this particular reset.css, but generally speaking, resets are very light in terms of specificity so doesn't seem likely to override any of his styles.
Given the code posted, there is nothing that indicates styles would not apply (except that there is no explicit reference to ANY css from the HTML that was posted.
Thanks everyone for the help. I'm still having troubles with it but teedoff's help looking at the site has given me an idea of what may be causing the problem. I'll keep looking into it and if I can't fix it, I'll post another thread with the full CSS. Thanks again :)
Please keep us informed. I'm curious to find out if this gets resolved. Regardless of how many stylesheets one has, if you style an element within the page(embedded), that will over ride your external stylesheets. So surely that would work here.