Adjust media css listing to use divs instead of <p> tags

This commit is contained in:
johnnyq
2024-03-20 18:11:37 -04:00
parent 5d3e6da38d
commit ca0eb4f261
5 changed files with 14 additions and 29 deletions

View File

@@ -77,11 +77,8 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
<div class="media">
<i class="fa fa-fw fa-2x fa-cube mr-3"></i>
<div class="media-body">
<p>
<?php echo "$software_name <span>$software_version</span>"; ?>
<br>
<small class="text-secondary"><?php echo $software_description; ?></small>
</p>
<div><?php echo "$software_name <span>$software_version</span>"; ?></div>
<div><small class="text-secondary"><?php echo $software_description; ?></small></div>
</div>
</div>
</a>