-
tengwah replied to the topic Remove Comment box html tags option in the forum How-to & Troubleshooting 11 years, 4 months ago
I added that to my stylesheet, it did nothing, couldnt figure what I was doing wrong, I tried different ways of entering this, it is more difficult to get detailed explanations for doing css than it is to do css. I gave up and started to do something else for a while.
I read another post somewhere else to try and get the ‘header search bar…[Read more]
-
Hugo Ashmore replied to the topic [Resolved] Child theme won't work in the forum Creating & Extending 11 years, 6 months ago
And that’s about it. Nothing happened.
That needs to be qualified. What exactly didn’t happen or more precisely what did you expect to happen?
When you create a child of bp-default or any child for that matter you inherit the parents functions.php as well as templates this means in the case of bp-default the CSS and JS are all i…[Read more]
-
London Pings replied to the forum topic After activating child theme tags and categories not working correctingly ? in the group How-To and Troubleshooting 13 years, 1 month ago
I did not copy functions.php over
2) did not @import parent theme’s default .css
I followed the instructions given here:
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
-
mercime replied to the forum topic BP template pack not working in the group How-To and Troubleshooting 13 years, 1 month ago
Re child theme:
1. if you’re going to build your style on top of bp-default styles, then you should add @import rule to get bp-default stylesheet in your child theme’s style.css and BP will respect that and […] -
simon replied to the forum topic BP 1.5 – Wierd bug with CSS loading a child theme in the group How-To and Troubleshooting 13 years, 2 months ago
aaaa….. IC what’s going on here…. previously on child themes you would include the BP default theme as an @import at the top of your child theme style.css this is no longer neccesary with the way BP 1.5 loads […]
-
Quint replied to the forum topic Child Theme CSS Import Problems with WP-Multi Network and BP 1.5 beta 2 in the group How-To and Troubleshooting 13 years, 2 months ago
So the code in my previous post doesn’t show. Since then, this is what I’ve included in my child theme’s functions.php file (and I have NOT done an @import within my style.css […]
-
John James Jacoby replied to the forum topic BP 1.5 – Wierd bug with CSS loading a child theme in the group How-To and Troubleshooting 13 years, 2 months ago
Using @import in combination with linked CSS causes CSS load order issues, as the HTTP requests are not completed in sequence.
I would suggest researching and using the WordPress API wp_enqueue_style() to […]
-
mercime replied to the forum topic Child Theme CSS Import Problems with WP-Multi Network and BP 1.5 beta 2 in the group How-To and Troubleshooting 13 years, 2 months ago
@gregfielding my bad, that code above was for BP 1.5 beta 3 and this only prevents the adminbar.css from being enqueued via wp_head. So you can definitely use your own adminbar.css by @import in style.css of child […]
-
Virtuali posted on the forum topic Trouble Finding Where to Customize BP in the group Installing BuddyPress: 13 years, 4 months ago
Sorry, I don’t know why it does that with code tags.
Put this:/* Inherit the default theme styles */
@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 ); -
mercime posted on the forum topic Admin Bar is missing / dissapeared in the group How-To and Troubleshooting: 13 years, 5 months ago
-
Virtuali posted on the forum topic JobRoller + BuddyPress errors in the group Third Party Components & Plugins: 13 years, 7 months ago
@linkyou, add this to your theme’s css:
/* Inherit the default theme styles */ <a href='https://buddypress.org/community/members/Import/'></a><a href='https://buddypress.org/community/members/Import/'>@import</a> url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css ); /* Inherit the default theme adminbar styles */ <a…
[Read more] -
hnla posted on the forum topic Top Nav Bar Display Problems in the group How-To and Troubleshooting: 13 years, 8 months ago
If you are talking about the adminbar (very top) then the template plugin references the file from the bp-default theme in the buddypress plugin directory but you can disable that file and code your own styles or place a copy of the file in your themes folder and add an @import call to it in your […]
-
brettsandersuk posted on the forum topic The server responded with a status of 404 (Not found) in the group How-To and Troubleshooting: 13 years, 8 months ago
Ok, changed it to:
/* Inherit the default theme adminbar styles */
@import url(adminbar.css );Not much has changed. This time the Admin Bar is now not showing right on the WP Dashboard as well as the site.
I hope that’s right now
-
brettsandersuk posted on the forum topic The server responded with a status of 404 (Not found) in the group How-To and Troubleshooting: 13 years, 8 months ago
/* Inherit the default theme adminbar styles */
@import url( ../../themes/los_angeles/adminbar.css );That’s more like it!
-
brettsandersuk posted on the forum topic The server responded with a status of 404 (Not found) in the group How-To and Troubleshooting: 13 years, 8 months ago
Thanks for getting back to me. Ok, so just to clarify: I have moved adminbar.css into my theme. Then added this line to my style.css in my theme.
/* Inherit the default theme adminbar styles */ <a href='https://buddypress.org/community/members/Import/'>@import</a> url( ../../themes/los_angeles/adminbar.css );
Is that right? If it is, then it hasn’t…[Read more] -
hnla posted on the forum topic The server responded with a status of 404 (Not found) in the group How-To and Troubleshooting: 13 years, 8 months ago
It might be physically there but clearly the path to file is not correct or at least that’s the way it looks, simple test move the file into your child theme and add an @import call to the style.css in child root.
Somewhere those ‘unrelated’ changes must have been related in some way not apparent.
-
mikedark posted on the forum topic having trouble creating a child theme in the group How-To and Troubleshooting: 13 years, 10 months ago
thanks mercime, that was really helpful. but actually, after reading your post, all i did was swap out the URLs in my child theme’s stylesheet, so now i have, /* Inherit the default theme styles */ @import url( ../../themes/bp-default/_inc/css/default.css ); /* Inherit the default theme adminbar styles */ @import url(…[Read more]
-
luvs123 posted on the forum topic Getting Buddypress Functions in to Custom Theme in the group How-To and Troubleshooting: 13 years, 10 months ago
bump Ok for future references, here is exactly what I did for my arras theme, And so far, it’s pretty good. 1. Installed Arras + Buddypress. 2. Installed Buddypress Template Pack 3. Called the Buddypress Stylesheets into my theme (/* Inherit the default theme styles */ @import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css…[Read more]
-
Savannah Video Central.com posted on the forum topic Changes on BP Template Pack CSS only shows for certain sections/pages? in the group How-To and Troubleshooting: 13 years, 11 months ago
You can get all the styling for you custom theme in /plugins/buddypress/bp-themes/bp-default/inc/css/default.css
In order for it to take affect in your theme you need to add “/* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );” into your custom css page. -
liveview posted on the forum topic Removing the adminbar padder in child theme in the group How-To and Troubleshooting: 14 years ago
../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css is my @import url
- Load More
@import
Not recently active