tinkering with icon size

master
BodgeMaster 2020-03-10 20:25:38 +01:00
parent 80eace63b5
commit f64098fe7b
1 changed files with 5 additions and 5 deletions

View File

@ -8,18 +8,18 @@ if (!isset($login)){
<ul class="topnav">
<li>
<?php
echo "<a href=\"%CONTENT_DIR%/userhome/\"><img src=\"/common/threadr/img/ThreadR_Home.svg\" class=\"icon ";
echo "<a class=\"icon ";
if ($login){
if ($navbar == "home"){
echo "active\" alt=\"My Feed\" title=\"My Feed\"";
echo "active\" href=\"%CONTENT_DIR%/userhome/\"><img src=\"/common/threadr/img/ThreadR_Home.svg\" alt=\"My Feed\" title=\"My Feed\"";
} else {
echo "\" alt=\"My Feed\" title=\"My Feed\"";
echo "\" href=\"%CONTENT_DIR%/userhome/\"><img src=\"/common/threadr/img/ThreadR_Home.svg\" alt=\"My Feed\" title=\"My Feed\"";
}
} else {
if ($navbar == "home"){
echo "active \" alt=\"Home\" title=\"Home\"";
echo "active\" href=\"%CONTENT_DIR%/\"><img src=\"/common/threadr/img/ThreadR_Home.svg\" alt=\"Home\" title=\"Home\"";
} else {
echo "\" alt=\"Home\" title=\"Home\"";
echo "\" href=\"%CONTENT_DIR%/\"><img src=\"/common/threadr/img/ThreadR_Home.svg\" alt=\"Home\" title=\"Home\"";
}
}
echo "/></a>";