Hi @ACTasarim,
We ended up with this mod. It´s working for us and I really hope it will fix it for you as well.
If the file does not exist in you child theme, then you have to copy it from the main theme.
See attached picture for the result.
File: sweetdate_child/custom_buddypress/_inc/css/default.css
Before:
form#whats-new-form #whats-new-submit {
float: left;
}
After:
form#whats-new-form #whats-new-submit {
float: right;
margin: -34px 0px 0px 0px;
}
Before (this makes the “share” button a bit wider):
#aw-whats-new-submit {margin-bottom:10px;}
After (this makes the “share” button a bit wider):
#aw-whats-new-submit {margin-bottom:10px; padding: 4px 26px !important;}
Before:
#whats-new-options {
/*overflow: auto;*/
overflow: inherit;
height: 0;
/*display:none;*/
}
After:
#whats-new-options {
/*overflow: auto;*/
overflow: inherit;
height: 0;
/*display:none;*/
display: initial;
}