Update the pfp size CSS

Add a pfp-small class and adjust the pfp size to 50px by 50px.
This commit is contained in:
2022-07-17 18:01:55 -04:00
parent a0e3de1200
commit 5cce4f0b0d
2 changed files with 9 additions and 1 deletions

View File

@@ -45,7 +45,7 @@ if (file_exists($dir) && is_dir($dir) ) {
$link_title = str_replace($_replace,'',$link_title);
if (file_exists($file."/pfp.png")){
$pfp_path = "$file/pfp.png";
echo("<ul><li><img src=\"$pfp_path\" class=\"pfp\" name=\"$file pfp\"><a href='$file'> $link_title </a></li></ul>\n");//Output the result.
echo("<ul><li><img src=\"$pfp_path\" class=\"pfp-small\" name=\"$file pfp\"><a href='$file'> $link_title </a></li></ul>\n");//Output the result.
} else {
echo("<ul><li><a href='$file'> $link_title </a></li></ul>\n");//Output the result.
}