Well, if it is just the p rule messing you up in the table:
Code:
#customertable, #customertable p {
padding-bottom: 0!important;
}
I'm not clear on the checkbox but the text inputs appear to be:
In fact that could be affecting the checkbox, as it is an input too, so a rule like so could be causing both problems:
Code:
input {
display: block;
}
Now if all of these are in the table, we can just:
Code:
#customertable input {
display: inline!important;
}
Or, if there are no inputs that require display block, you can just find and remove the rule for that. However, it's probably there for some reason, so if the text inputs are outside the table, you must find some way to select them as different from the others that may need display block.
For instance, they could each be given a class:
HTML Code:
<input class="nobr" type="text" . . .
Code:
.nobr {
display: inline!important;
}
But looking at your attached stylesheet I see no rule for that, but do see:
Code:
#commentform input {
margin-bottom: 3px;}
That could be responsible for the checkbox, the other inputs could just be the result of line breaks due either to <br> tags or because the text must wrap due to the width of the containing element.
There could be other styles in effect that are not in your stylesheet, like inline styles, or from another sheet. If you want more help:
Please post a link to the page on your site that contains the problematic code so we can check it out.
Bookmarks