The background color is coming from a rule on line 88 of the dynamic.css file.
http://www.customseedpacks.com/wp-content/uploads/pagelines/dynamic.css?ver=135-06141151959
Here's the rule.. it applys a green background color to all of these elements.. including a blanket application to all inputs, textareas, etc... pretty sloppy CSS.
[css]
#feature-footer,
.main-nav li.current-page-ancestor a,
.main-nav li.current_page_item a,
.main-nav li.current-page-ancestor ul a,
.main-nav li.current_page_item ul a,
#wp-calendar caption,
#buddypress-page #subnav,
#buddypress-page .activity .activity-inner,
#buddypress-page table.forum th,
#grandchildnav.widget,
blockquote,
input,
textarea,
.searchform .searchfield,
.wp-caption,
.widget-default,
.commentlist .alt,
#wp-calendar #today,
#buddypress-page div.activity-comments form .ac-textarea,
#buddypress-page form#whats-new-form #whats-new-textarea,
.post-nav,
.current_posts_info,
.post-footer,
#twitterbar,
#carousel .content-pad,
.success,
.sf-menu li li,
.sf-menu li li,
.sf-menu li li li,
.content-pagination a .cp-num,
.hentry table .alternate td {
background:#198a00;
}
The best thing to do is to edit this file and remove the input & textarea references or you'll probably encounter this again somewhere else. It appears that you've overriden that blanket style with some other rules for the rest of your form. It's best to just nix it at the source than try to override it with more CSS unless you absolutely have to.
Posted 13 years ago on Tuesday June 14, 2011 |
Permalink