#3285 closed defect (bug) (no action required)
Error in Building a BuddyPress Child Theme
Reported by: | Owned by: | ||
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | |
Component: | Core | Keywords: | |
Cc: |
Description
on this page
http://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
This is shown:
@import url("../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css");
/* Inherit the default theme adminbar styles */
@import url("../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css");
This fails.
I think it should be:
@import url("../../../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css");
/* Inherit the default theme adminbar styles */
@import url("../../../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css");
That seems incorrect to me. Are you putting your child theme in wp-content/themes (which is where they should go)? If you're putting them in wp-content/plugins/bp-themes/, you're doing it wrong.
In any case, the codex is a wiki, so if you find a genuine error, you can correct it yourself. But I don't think this one is a real error.
I suggest that you take inquiries like this to the support forums http://buddypress.org/support, where there will be more eyeballs. This bug tracker is for bugs with the core software, not the Codex.