Showing 18,317 of 18,317 total issues
Identical blocks of code found in 2 locations. Consider refactoring. Open
if ( $course_id ) {
$new_crumbs = array();
$new_crumbs[0] = $crumbs[0];
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 192.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Identical blocks of code found in 2 locations. Consider refactoring. Open
if ( $course_id ) {
$new_crumbs = array();
$new_crumbs[0] = $crumbs[0];
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 192.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Function my_account_menu_item
has a Cognitive Complexity of 39 (exceeds 25 allowed). Consider refactoring. Open
public function my_account_menu_item( $items, $args ) {
$my_account_menu_item_position = apply_filters( 'lsx_wc_my_account_menu_item_position', 'primary' );
if ( $my_account_menu_item_position === $args->theme_location || ( 'primary_logged_out' === $args->theme_location && 'primary' === $my_account_menu_item_position ) ) {
$customizer_option = get_theme_mod( 'lsx_wc_my_account_menu_item', false );
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Consider simplifying this complex logical expression. Open
if (
((a.animating = !0),
(a.animatingTo = e),
t && a.pause(),
a.vars.before(a),
Identical blocks of code found in 2 locations. Consider refactoring. Open
if ($(this).hasClass("collapse")) {
$(this).removeClass("collapse");
} else {
$(this).addClass("collapse");
}
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 53.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Identical blocks of code found in 2 locations. Consider refactoring. Open
if ($(this).hasClass("collapse")) {
$(this).removeClass("collapse");
} else {
$(this).addClass("collapse");
}
- Read upRead up
Duplicated Code
Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:
Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.
When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).
Tuning
This issue has a mass of 53.
We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.
The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.
If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.
See codeclimate-duplication
's documentation for more information about tuning the mass threshold in your .codeclimate.yml
.
Refactorings
- Extract Method
- Extract Class
- Form Template Method
- Introduce Null Object
- Pull Up Method
- Pull Up Field
- Substitute Algorithm
Further Reading
- Don't Repeat Yourself on the C2 Wiki
- Duplicated Code on SourceMaking
- Refactoring: Improving the Design of Existing Code by Martin Fowler. Duplicated Code, p76
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Element (img.avatar.pull-left) is overqualified, just use .avatar without element name. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418AD0;-webkit-box-shadow:2px 2px 0 0 #367DC0;box-shadow:2px 2px 0 0 #367DC0;color:#fff;border:0 none;border-radius:3px;padding:15px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367DC0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-right:2px}#bbpress-forums div.bbp-template-notice{background-color:#dae7f7;border-color:#4a90e2;color:#4a4a4a}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#dae7f7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:left}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#e1e6eb}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4a4a4a}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4a4a4a;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:left}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#DADDDF}#bbpress-forums fieldset.bbp-form legend{background-color:#2b3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type="checkbox"]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418AD0;-webkit-box-shadow:2px 2px 0 0 #367DC0;box-shadow:2px 2px 0 0 #367DC0;color:#fff;border:0 none;border-radius:3px;padding:15px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367DC0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-right:2px}#bbpress-forums div.bbp-template-notice{background-color:#dae7f7;border-color:#4a90e2;color:#4a4a4a}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#dae7f7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:left}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#e1e6eb}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4a4a4a}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4a4a4a;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:left}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#DADDDF}#bbpress-forums fieldset.bbp-form legend{background-color:#2b3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type="checkbox"]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Adjoining classes: #bbpress-forums li.bbp-body img.avatar.pull-left Open
.button-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418AD0;-webkit-box-shadow:2px 2px 0 0 #367DC0;box-shadow:2px 2px 0 0 #367DC0;color:#fff;border:0 none;border-radius:3px;padding:15px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367DC0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-right:2px}#bbpress-forums div.bbp-template-notice{background-color:#dae7f7;border-color:#4a90e2;color:#4a4a4a}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#dae7f7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:left}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#e1e6eb}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4a4a4a}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4a4a4a;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:left}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#DADDDF}#bbpress-forums fieldset.bbp-form legend{background-color:#2b3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type="checkbox"]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418AD0;-webkit-box-shadow:2px 2px 0 0 #367DC0;box-shadow:2px 2px 0 0 #367DC0;color:#fff;border:0 none;border-radius:3px;padding:15px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367DC0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-right:2px}#bbpress-forums div.bbp-template-notice{background-color:#dae7f7;border-color:#4a90e2;color:#4a4a4a}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#dae7f7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:left}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#e1e6eb}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4a4a4a}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4a4a4a;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:left}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#DADDDF}#bbpress-forums fieldset.bbp-form legend{background-color:#2b3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type="checkbox"]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Rule doesn't have all its properties in alphabetical order. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
Don't use IDs in selectors. Open
.button-holder{display:-ms-flexbox;display:flex;width:100%;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418ad0;box-shadow:-2px 2px 0 0 #27639e;color:#fff;border:0 none;border-radius:3px;padding:15px 40px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367dc0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-left:2px}#bbpress-forums div.bbp-template-notice{background-color:#DAE7F7;border-color:#4A90E2;color:#4A4A4A}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#DAE7F7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:right}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#E1E6EB}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4A4A4A}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4A4A4A;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:right}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#dddddd}#bbpress-forums fieldset.bbp-form legend{background-color:#2B3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type=checkbox]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks
2 IDs in the selector, really? Open
.button-holder{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;vertical-align:middle;margin:0;padding:0}#bbpress-forums div.bbp-search-form #bbp_search_submit,#bbpress-forums button.button{background-color:#418AD0;-webkit-box-shadow:2px 2px 0 0 #367DC0;box-shadow:2px 2px 0 0 #367DC0;color:#fff;border:0 none;border-radius:3px;padding:15px;font-size:14px;letter-spacing:0.6px;line-height:1.25;text-transform:uppercase}#bbpress-forums div.bbp-search-form #bbp_search_submit:hover,#bbpress-forums button.button:hover{background-color:#367DC0}.forum-archive.archive:not(.has-sidebar) .site-main{width:100%}#bbpress-forums{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bbpress-forums .bbp-breadcrumb{display:none}#bbpress-forums div.bbp-search-form{margin-bottom:2.4rem}#bbpress-forums div.bbp-search-form #bbp_search{color:#919191;-webkit-box-shadow:none;box-shadow:none;border-radius:3px;border:1px solid #dadddf;padding:12px 40px;font-size:14px;font-weight:700}#bbpress-forums div.bbp-search-form #bbp_search_submit{margin-right:2px}#bbpress-forums div.bbp-template-notice{background-color:#dae7f7;border-color:#4a90e2;color:#4a4a4a}#bbpress-forums div.bbp-template-notice.info{border:#cee1ef 1px solid;background-color:#f0f8ff}#bbpress-forums div.bbp-template-notice p.bbp-topic-description,#bbpress-forums div.bbp-template-notice p{font-size:15px}#bbpress-forums div.bbp-template-notice p.bbp-topic-description .bbp-author-avatar,#bbpress-forums div.bbp-template-notice p .bbp-author-avatar{display:none}#bbpress-forums .bbp-topics-front ul.super-sticky,#bbpress-forums .bbp-topics ul.super-sticky,#bbpress-forums .bbp-topics ul.sticky,#bbpress-forums .bbp-forum-content ul.sticky{background-color:#dae7f7 !important}#bbpress-forums div.bbp-pagination{font-size:15px}#bbpress-forums li.bbp-header{font-size:15px}#bbpress-forums li.bbp-header .bbp-reply-author{text-align:left}#bbpress-forums li.bbp-body div.bbp-reply-header{background-color:#e1e6eb}#bbpress-forums li.bbp-body a.bbp-forum-title,#bbpress-forums li.bbp-body a.bbp-topic-permalink{font-size:18px;color:#4a4a4a}#bbpress-forums li.bbp-body span.bbp-admin-links{color:#4a4a4a}#bbpress-forums li.bbp-body a.bbp-reply-permalink{color:#4a4a4a;font-weight:600}#bbpress-forums li.bbp-body .bbp-topic-meta{font-size:14px}#bbpress-forums li.bbp-body .bbp-topic-meta .bbp-author-avatar{display:none}#bbpress-forums li.bbp-body img.avatar.pull-left{float:initial !important}#bbpress-forums li.bbp-body .bbp-forum-info .bbp-forum-content{font-size:12px;line-height:17px}#bbpress-forums li.bbp-body .bbp-forum-freshness,#bbpress-forums li.bbp-body .bbp-topic-freshness{font-size:15px}#bbpress-forums li.bbp-body .bbp-forum-freshness a.bbp-author-avatar,#bbpress-forums li.bbp-body .bbp-topic-freshness a.bbp-author-avatar{display:none}#bbpress-forums li.bbp-body .bbp-forum-freshness .bbp-topic-meta,#bbpress-forums li.bbp-body .bbp-topic-freshness .bbp-topic-meta{font-size:15px}#bbpress-forums li.bbp-body li.bbp-forum-reply-count,#bbpress-forums li.bbp-body li.bbp-forum-topic-count,#bbpress-forums li.bbp-body li.bbp-topic-voice-count,#bbpress-forums li.bbp-body li.bbp-topic-reply-count{font-size:15px}#bbpress-forums li.bbp-footer div.bbp-reply-author,#bbpress-forums li.bbp-footer div.bbp-reply-content{text-align:left}#bbpress-forums div.odd,#bbpress-forums ul.odd,#bbpress-forums div.even,#bbpress-forums ul.even{background-color:#fff}#bbpress-forums .bbp-topic-form,#bbpress-forums .bbp-reply-form{padding-top:30px}#bbpress-forums fieldset.bbp-form{background-color:#fff;border-color:#DADDDF}#bbpress-forums fieldset.bbp-form legend{background-color:#2b3840;color:#fff;padding:5px 10px}#bbpress-forums fieldset.bbp-form div.bbp-submit-wrapper{float:initial;margin-bottom:4.25rem}#bbpress-forums fieldset.bbp-form input[type="checkbox"]+label{font-weight:normal}#bbpress-forums #bbp-single-user-details #bbp-user-navigation li.current a{background:none}
- Exclude checks