Ah great, sorry how do I deal with this in the child theme’s style.css ?
Aaron
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 {
float: none;
width:100%;
}
}
`
Note the two sets of brackets…
Please Note: There should not be a space between `@` and `media` but as someone has used that as a nickname it turns it automatically into a mention and I don’t know if it’s possible to disable that
I have had to remove the ‘responsive.css’ functionality as I am not worried about supporting Apple iPad and iPhone’s.
I put the following in the Child Theme’s ‘functions.php’ :-
`
function bp_head_action() {
remove_theme_support( ‘bp-default-responsive’ );
}
add_action( ‘bp_head’, ‘bp_head_action’);
`
If there is a better solution that does not cause weird behaviour on old laptops XP which a lot of the clients I have use I would like to know. Otherwise I may code in a user option at somepoint maybe.
Thanks,
Aaron