Make user images fit the parent container and remove the cricle

This commit is contained in:
johnnyq
2022-02-05 10:53:08 -05:00
parent 5e5c546b97
commit 7e475b1083
2 changed files with 2 additions and 2 deletions

View File

@@ -28,7 +28,7 @@ $sql_recent_logs = mysqli_query($mysqli,"SELECT * FROM logs
<?php if(empty($session_avatar)){ ?>
<i class="fas fa-user-circle fa-8x text-secondary"></i>
<?php }else{ ?>
<img src="<?php echo "uploads/users/$session_user_id/$session_avatar"; ?>" class="img-circle img-fluid">
<img src="<?php echo "uploads/users/$session_user_id/$session_avatar"; ?>" class="img-fluid">
<?php } ?>
<h4 class="text-secondary mt-2"><?php echo $session_user_role_display; ?></h4>
</center>