Ada

Forum Replies Created

Viewing 15 posts - 2,641 through 2,655 (of 2,670 total)
  • Author
    Posts
  • in reply to: Mega menu is broken (when logged in) #328855
    Ada
    Participant
    Looks like you have removed mega menu on your site but you must had added items in megamenu that are not meant to be there. Megamenus are for custom navigation . Please take help from megamenu videos so that you get a clear idea about it. https://www.youtube.com/watch?v=gKz5dDjWu5M https://www.youtube.com/watch?v=QX5Cfefxw-c https://www.youtube.com/watch?v=GMD5tB8Y9vE
    in reply to: Tips/Guide Text Boxes out of the screen #328685
    Ada
    Participant
    I have customized the margin and padding according to your site content , Please replace the previous code with this updated one ,from Customize>>Custom CSS
    
    .vibebp_main .fc-header-toolbar {
        
        padding-right: 5.5rem;!important;
    }
    
    .vibebp_main .appointments_header{
    	padding-right:5.5rem;!important;
    }
    .course_admin .course_students .course_student{
        margin-right: 5rem;!important;
    }
    .vibebp_main .create_course .course_duration_stick_left {
        margin-right: 7rem;
    }
    .vibebp_main .appointments_header {
        padding-right: 5.5rem;
        !important: ;
    }
    .wplms_create_course_wrapper .wplms_edit_course_content {
        
        padding-right: 10rem;!important;
    }
    
    You can slight increase or decrease these padding values as per your preference.
    in reply to: homepage #328593
    Ada
    Participant
    Okay, Please use this css code for the same.
    .upb_row_bg.vcpb-default {
        border-radius:10px;
    }
    
    Ada
    Participant
    This reply has been marked as private.
    in reply to: change the color of the next lesson and the previous lesson #328556
    Ada
    Participant
    Use this code in appearance >>customize >>custom css
    
    .course_component .unit_prevnext {}
     .unit_prevnext .navigate_unit {
       
        color: #e6dbdb;
    }
    
    in reply to: Default Course layout in VibeBP not displaying correctly #328551
    Ada
    Participant
    You can create your own course layout or edit the available layouts using elementor. Refer to this video for knowing more about layouts. https://www.youtube.com/watch?v=QGs1QpVKpXI
    in reply to: Tips/Guide Text Boxes out of the screen #328436
    Ada
    Participant
    For the locations you have shared ,where you are facing this problem I have written custom css Add this custom css code in appearance >>customize >>CUSTOM CSS
    .vibebp_main .fc-header-toolbar {   
        padding-right: 4rem;!important;
     }
    
    .vibebp_main .appointments_header{
    	padding-right:4rem;!important;
    }
    .course_admin .course_students .course_student{
        margin: 0.75rem 0.75rem 0rem 2.5rem;!important;
    }
    .vibebp_main .create_course .course_duration_stick_left {
        margin-right: 7rem;!important;
    }
    
    in reply to: How to customize the student and teacher dashboard #328427
    Ada
    Participant
    I made a little change in the previous code .Please use this code in wplms-customizer.php
    function custom_background_image(){
      $user = wp_get_current_user();
      if ( in_array( ‘instructor’, (array) $user->roles ) ) {
      //The user has the “Instructor” role
      ?>
      <style>
       #vibebp_member .profile_grid  {
        background-image:url(URL of background image for
        teacher);
        background-size: cover;
        background-repeat:no-repeat;
        }
      </style>
      <?php
     }
     elseif (in_array( ‘student’, (array) $user->roles ))
     { //the user has the “student” role
      ?>
      <style>
       #vibebp_member .profile_grid  {
        background-image:url(URL of background image for student);
        background-size: cover;
        background-repeat:no-repeat;
       }
      </style>
      <?php
      }
    
    }
    add_action(‘wp_head’, ‘custom_background_image’);
    https://prntscr.com/vxahzw
    in reply to: Hide the search form in the course directory #328390
    Ada
    Participant
    This reply has been marked as private.
    in reply to: Removing wplms name and copyright from footer #328204
    Ada
    Participant
    This reply has been marked as private.
    in reply to: Features Image #328203
    Ada
    Participant
    This reply has been marked as private.
    in reply to: Get WordPress Author Website Url #328202
    Ada
    Participant
    This reply has been marked as private.
    in reply to: How to customize the student and teacher dashboard #328062
    Ada
    Participant
    This reply has been marked as private.
    in reply to: #query6 #328030
    Ada
    Participant
    This reply has been marked as private.
    in reply to: How to Set Grid View by Default for All courses #328023
    Ada
    Participant
    This reply has been marked as private.
Viewing 15 posts - 2,641 through 2,655 (of 2,670 total)