Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    Thanks for your post.

    Please add following code to your theme functions.php file

    
    add_action('team_action_before_single_team_member', 'team_action_before_single_team_member', 10);
    
    function team_action_before_single_team_member() {
      echo '<div class="container">';
    }
    
    function team_action_after_single_team_member() {
      echo '</div>';
    }
    
    add_action('team_action_after_single_team_member', 'team_action_after_single_team_member', 10);
    
    
    Thread Starter aduranz

    (@aduranz)

    Hi:

    I add the code at the end, but it remains the same, don′t work.

    https://ibb.co/jfiXXa

    Thanks

    Plugin Author PickPlugins

    (@pickplugins)

    Also try following CSS

    
    .team-container {
      float: none;
      margin: 0 auto;
      padding: 30px;
      width: 90%;
    }
    
    Thread Starter aduranz

    (@aduranz)

    Great! works fine, thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘container text cut’ is closed to new replies.