-
José Manuel started the topic tag with the group admins value looks too big. in the forum How-to & Troubleshooting 2 months, 1 week ago
Hi friends.
I’m using buddypress Version 14.1.0 with the legacy buddypress template, in wordpress (latest version)
When I open a group, I see that the <h2> tag with the group admins value
looks too big.
I’ve modified the css as follows:
#item-actions, h2 {
font-size: small;
}
And it looks fine on desktop, but it still looks…[Read more] -
David Cavins replied to the topic Mobile friendly registration? in the forum How-to & Troubleshooting 6 years, 8 months ago
CSS.Something like this will fix up the default form:
@media (max-width: 600px) {
#buddypress .standard-form #profile-details-section,
#buddypress .standard-form #basic-details-section {
float: left;
width: 100%;
}
}
-
Joost abrahams replied to the topic I do not see login or register links on top black bar in the forum How-to & Troubleshooting 7 years, 2 months ago
Try this css code
/* wp-admin bar */
@media screen and (max-width: 782px) {
#wpadminbar li#wp-admin-bar-bp-login a, #wpadminbar li#wp-admin-bar-bp-register a {
padding: 0 8px;
}
}@media screen and (max-width: 782px) {
#wpadminbar li#wp-admin-bar-bp-login, #wpadminbar li#wp-admin-bar-bp-register {
display: block;
}
}
-
Joost abrahams replied to the topic missing wordpress admin bar mobile view in the forum How-to & Troubleshooting 7 years, 2 months ago
Put this css inside your customizer or child theme.
/* wp-admin bar */
@media screen and (max-width: 782px) {
#wpadminbar li#wp-admin-bar-bp-login a, #wpadminbar li#wp-admin-bar-bp-register a {
padding: 0 8px;
}
}@media screen and (max-width: 782px) {
#wpadminbar li#wp-admin-bar-bp-login, #wpadminbar li#wp-admin-bar-bp-register…[Read more] -
Georgio replied to the topic Changing adminbar site-name url in the forum How-to & Troubleshooting 8 years, 3 months ago
Finally I could resolve the problem after reading this article
This developer suggests creating a plugin. The result is a link with a dashicon but it is not responsive. To make it responsive (show on mobile), I added in the css file of the plugin a snippet I fould elsewhere:
@media screen and (max-width: 782px) {
[Read more]
#wpadminbar… -
@mercime replied to the topic [Resolved] Front.php and BuddyPress 2.6 in the forum Miscellaneous 8 years, 4 months ago
@destac There are different ways to implement the new feature. For the screenshot, I did it in 4 simple steps.
Note that you might need to adjust how the widgets are registered, named, or styled based on your theme.
1. Registered three new widget areas in the child/theme’s
functions.php
file.<?php // Only add this line if you are adding this…
[Read more] -
@mercime replied to the topic [Resolved] Full Width Layout with "Reddle"-themen in the forum Creating & Extending 10 years, 2 months ago
@1a-spielwiese The better guide to use in making a full-width page for the theme you’re using, https://wordpress.org/themes/reddle, is the one for Twenty Twelve at https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/twenty-twelve-theme/
HTML structure for Reddle and Twenty Twelve are almost identical.…[Read more]
-
Prince Abiola Ogundipe replied to the topic Feedback needed before i release this buddypress theme in the forum Showcase 10 years, 6 months ago
@bphelp, thanks boss for the feedback, I will look into the error.
@henrywright, thanks for the feedback, yes I will definately make theme responsive. I have the necessary @media screen css ready to take care of that.
As a free theme, i dont want to use bootstrap because of my past experience.
After the release, update will include changing the…[Read more]
-
Clara replied to the topic [Resolved] Remove member last active in the forum How-to & Troubleshooting 10 years, 9 months ago
HI,
I am attempting this as well.
I went into custom.css in my buddyboss theme (it is reflective mobile ready theme)
I thought I was adding this in the right place by putting it in global area, but it did not work…
have never been near css before so clueless…
here is what the page looks like with my addition… it did not hide the active…[Read more]
-
@mercime replied to the topic sidebar issues in the forum How-to & Troubleshooting 11 years, 6 months ago
Add this to the bottom of your custom.css
/* Mobile */
@media only screen and (max-width: 767px) {
body.bp-user #sidebar {
margin-top: 0;
}
} -
aces replied to the forum topic Default Theme: Menus on narrow screens or old laptops in the group How-To and Troubleshooting 12 years, 7 months ago
I’ve just done it in a non bp child theme – wrapping the new css in extra brackets for @media in style.css – ie:
`
@ media (max-width: 520px) {
.my-class {
float: none;
width:100%;
}
.whatever-class […] -
aces replied to the forum topic Default Theme: Menus on narrow screens or old laptops in the group How-To and Troubleshooting 12 years, 7 months ago
It is probably the https://buddypress.trac.wordpress.org/browser/tags/1.5.5/bp-themes/bp-default/_inc/css/responsive.css stylesheet kicking in.
You should be able to use @media in your child theme stylesheet…..
-
Pisanojm posted on the forum topic Need Help with Print CSS for Buddypress. PLEASE help. in the group How-To and Troubleshooting: 14 years, 4 months ago
@mercime First of all THANK YOU! I’m 95% of the way there! Items 2 and 3 completely resolved with your above. Item 1 still doesn’t appear… Any other thoughts? Here is what I currently have: /* > Print Styles MusicPLN.org BP ————————————————————– */ @media print { body { background: #CEDAF4; font-size:…[Read more]
@media
Not recently active