Quote:
Originally Posted by singsign
How can I make the team logos bigger on the page?
|
On the team page?
Edit competitions.php
Go to lines 1609-1624:
PHP Code:
$size = getimagesize($teamlogo);
if ($size[1] > 80 OR $size[0] > 80) {
if ($size[1] > $size[0]) {
$ratio = $size[1]/80;
if ($ratio != 0) {
$size[1] = $size[1]/$ratio;
$size[0] = $size[0]/$ratio;
}
} else {
$ratio = $size[0]/80;
if ($ratio != 0) {
$size[1] = $size[1]/$ratio;
$size[0] = $size[0]/$ratio;
}
}
}
Replace with
PHP Code:
$size = getimagesize($teamlogo);
if ($size[1] > 120 OR $size[0] > 120) {
if ($size[1] > $size[0]) {
$ratio = $size[1]/120;
if ($ratio != 0) {
$size[1] = $size[1]/$ratio;
$size[0] = $size[0]/$ratio;
}
} else {
$ratio = $size[0]/120;
if ($ratio != 0) {
$size[1] = $size[1]/$ratio;
$size[0] = $size[0]/$ratio;
}
}
}