I’m trying to make some tweaks to the Lush theme in a child theme, but I’m having trouble.
Here’s what I did:
I created a new directory ..wp-content/themes/lushchildtheme
I created a new style.css
This is all that I wrote in style.css
/*
Theme Name: Lush Child Theme
Theme URI: http://theacnezone.com
Description: Child Theme for Lush
Author: Travis
Author URI: http://theacnezone.com
Template: LivingOS-Lush
Version: 0.1
*/
@import url(“../LivingOS-Lush/style.css”);
#dropdown-menu {
float: left;
}
that’s all, and it worked and made the nav menu float left no problem. The problem is that now I get this error message:
You’ll need to activate a BuddyPress-compatible theme to take advantage of all of BuddyPress’s features.
Even with this message buddypress seams to be working fine.
So my question is, did i start my child theme correctly? and what’s with this error message?