BuddyBoss Home – Web › Support Forums › Themes › Boss. theme › BuddyPanel Formatting Problem in Mobile View After Boss. 2.0 Update
Tagged: buddypanel
- This topic has 7 replies, 3 contibutors, and was last updated 9 years ago by Anonymous.
Question
November 5, 2015 at 10:25 am #50737@dbaylessSince updating to the Boss. 2.0 (I’m currently running Boss. 2.0.3 with Social Learner for Sensei 1.0.6), the menu item cells in mobile view have some formatting problems. More specifically, a) the cell heights vary, and b) there is a mismatch between the on-hover contrasting color and the menu item cell.
These problems seem to occur in Mobile view on iOS and Android mobile devices as well as Chrome, Firefox, and Edge desktop browsers.
Screenshots attached.
As always, thanks for your help.
Answers
November 5, 2015 at 1:00 pm #50760@
AnonymousHi @dbayless, thanks for point this we will check this and get back to you.
Regards
PallaviNovember 5, 2015 at 5:05 pm #50787@dbaylessThank you, Pallavi.
November 6, 2015 at 12:43 am #50815@
Anonymous🙂
November 6, 2015 at 8:43 am #50882@
AnonymousHi @dbayless
Inside Social Learner I have modified some codes form line 425 to 449 inside functions.php
It will fix the issueif ( boss_get_option( 'mini_logo_switch' ) && boss_get_option( 'boss_small_logo', 'id' ) ) { $css .= " /* .header-navigation > div > ul { line-height: " . $small_logo_h . "px; height: " . $small_logo_h . "px; } */ #header-menu > ul > li { height: " . $small_logo_h . "px; line-height: " . $small_logo_h . "px; } "; } if ( boss_get_option( 'logo_switch' ) && boss_get_option( 'boss_logo', 'id' ) ) { $css .= " /* .left-menu-open .header-navigation > div > ul { line-height: " . $big_logo_h . "px; height: " . $big_logo_h . "px; } */ .left-menu-open #header-menu > ul > li { height: " . $big_logo_h . "px; line-height: " . $big_logo_h . "px; } "; }
with
if ( boss_get_option( 'mini_logo_switch' ) && boss_get_option( 'boss_small_logo', 'id' ) ) { $css .= " .is-desktop #header-menu > ul > li { height: " . $small_logo_h . "px; line-height: " . $small_logo_h . "px; } "; } if ( boss_get_option( 'logo_switch' ) && boss_get_option( 'boss_logo', 'id' ) ) { $css .= " .is-desktop.left-menu-open #header-menu > ul > li { height: " . $big_logo_h . "px; line-height: " . $big_logo_h . "px; } "; }
Regards
Varun DubeyNovember 6, 2015 at 9:17 am #50885@
AnonymousYou can also add to improve the padding for mobile submenus
.is-mobile .menu-panel #header-menu .sub-menu-wrap .sub-menu { padding: 0; }
Regards
November 6, 2015 at 9:31 am #50887@dbaylessLooks good, Varun. Thank you. I assume this fix will be incorporated in the next Social Learner child theme update?
November 6, 2015 at 12:43 pm #50915@
AnonymousHi @dbayless
yes it will be added sure, I have already made these edits at your site
Regards
Varun Dueby
- The question ‘BuddyPanel Formatting Problem in Mobile View After Boss. 2.0 Update’ is closed to new replies.