• Hi there!
    I wanna change the team-logos size or even remove them in widgets last matches, next matches (results) cause they are too big and i dont know where to change that in code, which file it is?

    Here is the picture from our site with this:
    click

    Thank you!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Angelborn

    (@angelborn)

    ehm makers of this patch dont know? amazing…

    Thread Starter Angelborn

    (@angelborn)

    bump :/

    You can resize it using the CSS mate. Try it.

    You can resize it using the CSS mate. Try it.

    img.home_logo {
        width: 20px;
        height: auto;
    }
    
    img.away_logo {
        width: 20px;
        height: auto;
    }

    Try this mate

    Thread Starter Angelborn

    (@angelborn)

    doesnt work for me :/ it must be in some php file… best way now is delete them from results

    Go to match.php and put a style to resize the image.

    <p class="score">
    		<span class="home_logo"><img src="<?php echo $match->homeLogo ?>" alt="" /></span>
    		<?php echo $match->score ?>
    		<span class="away_logo"><img src="<?php echo $match->awayLogo ?>" alt="" /></span>
    	</p>

    That’s it.

    Thread Starter Angelborn

    (@angelborn)

    and how to delete them from results? please?

    Plugin Author K

    (@koelle)

    You can hide them in the widget using CSS


    .leaguemanager_widget_content .logos img {
    display: none;
    }

    truly deleting the html code would require some code hacking in the file lib/widget.php, which I don’t recommend.

    Plugin Author K

    (@koelle)

    you can also use this css to resize the logos

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Changing the logos size’ is closed to new replies.