-
Anve S. replied to the question Header fixed in the forum OneSocial theme 8 years, 11 months ago
Thanks @jeanpierre
@johnnetr Please ask if you need more help . 🙂Regards
Anve -
Anve S. replied to the question Resize the title bar in the forum Boss. theme 8 years, 11 months ago
Hi @khanhar,
The following thread seems to be of your interest in resizing the titlebar . Please ask if you need more help.
https://www.buddyboss.com/support-forums/topic/changing-the-height-of-site-header/
Regards
Anve -
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
Hi @bstrehl,
I have checked your site and to me it appears absolutely fine . The buddypanel menus are not messed up . Please check once again .See the attached screenshot .
Regards
Anve -
Anve S. replied to the question Header covers the mobile theme in the forum Boss. theme 8 years, 11 months ago
I tried opening the given website url , but its not working . Please check yourself .
Regards
Anve -
Anve S. replied to the question Group page error. in the forum OneSocial theme 8 years, 11 months ago
Hi @johnnetr,
It’s a core functionality of Buddypress , You can raise your request in Buddypress forum.
Regards
Anve -
Anve S. replied to the question Removing white space on Visual Composer pages in the forum OneSocial theme 8 years, 11 months ago
Try applying following css in child theme’s custom css to remove that extra white space.
@media screen and (min-width:481px){
.site {
padding-top: 30px!important;
}
#post-18320 .wpb_column .vc_column-inner {
padding-top: 0 !important;
}
}
Regards
Anve -
Anve S. replied to the question How to you modify the Title Bar Icon options? in the forum OneSocial theme 8 years, 11 months ago
Hi @conscious-crafties ,
Please can you take the reference of the provided code and find in your header-user-links.php . You can use any good Editor for this purpose i guess.
Regards
Anve -
Anve S. replied to the question How to you modify the Title Bar Icon options? in the forum OneSocial theme 8 years, 11 months ago
Hi @johnnetr,
Copy header-user-links.php from parent theme to child theme on same path onesocial-child/template-parts/header-user-links.php.
On line no. 15
Replace
[Read more]
<a href="#" class="login header-button animatedClick boss-tooltip" data-target="LoginBox" data-tooltip="<?php _e( 'Login', 'onesocial' ); ?>"><i… -
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
Hi @bstrehl,
Yeah it makes some difference when it comes to css overriding. Glad to hear that it is solved 🙂
Regards
Anve -
Anve S. replied to the question How to erase links in /wp-login.php in the forum Boss. theme 8 years, 11 months ago
Hi @kostasf,
Try applying following code in theme-functions.php
function my_login_logo() { ?>
<style type="text/css">
#login > p#nav {
display: none;
}
</style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );Regards
Anve -
Anve S. replied to the question Removing white space on Visual Composer pages in the forum OneSocial theme 8 years, 11 months ago
Try adding following css in child theme’s custom css option
.bm-collections .featured-cats {
margin-bottom: 40px!important;
}
Regards
Anve -
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
Hi @bstrehl,
Try installing and activating ‘simple custom css’ plugin .Apply the css in custom css menu from backend.
Regards
Anve -
Anve S. replied to the question Use custom google searchbar. in the forum Boss. theme 8 years, 11 months ago
Hi @niel96,
Install and activate ‘Simple custom css’ plugin and you will see custom css menu in backend .Add css overthere. The css might not be overriding from theme option panel.
Regards
Anve -
Anve S. replied to the question Cover Photo Module in 'Create Group' Broken in the forum Boss. theme 8 years, 11 months ago
Hi @aaronmcnany,
Just to let you know that previously we were using our custom built cover photos functionality . But after Buddypress introduced its cover photo functionalities , we switched to it and removed ours. By the time we will improve it and will update in our next release.
Regards
Anve -
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
Hi @bstrehl,
Please add following custom css .
@media screen and (min-width:480px){
#header-menu > ul > li {
height: 48px!important;
}
}
Regards
Anve -
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
Hi @bstrehl,
Please apply the following css in child theme custom css option.
#header-menu > ul > li {
height: 48px!important;
}
Regards
Anve -
Anve S. replied to the question How to erase links in /wp-login.php in the forum Boss. theme 8 years, 11 months ago
Hi @kostasf,
Try adding the following code in theme-functions.php of child theme
function remove_lostpassword_text ( $text ) {
if ($text == 'Lost your password?'){$text = '';}
return $text;
}
add_filter( 'gettext', 'remove_lostpassword_text' );
This will help you removing lost your password link.
Also go…[Read more]
-
Anve S. replied to the question Problem with Titlebar dropdown menus not opening correctly in the forum Boss. theme 8 years, 11 months ago
HI @bstrehl ,
Please tell us which version of theme are you using and your activated / installed plugins list . Seems some plugin is conflicting on your site.
Regards
Anve -
Anve S. replied to the question White space between widgets on Sidebar where is DOES display in the forum OneSocial theme 8 years, 11 months ago
Great 🙂
-
Anve S. replied to the question White space between widgets on Sidebar where is DOES display in the forum OneSocial theme 8 years, 11 months ago
Try applying following css in child theme custom css option.
@media screen and (min-width:480px){
#secondary .widget {
padding: 40px 0!important;
}
#secondary .widget:first-child {
padding-top: 0!important;
}
}
Regards
Anve - Load More