Incorporate the css into your site's theme. For example, you can target images inside tables with:
table img {width: 100px; height: 100px; }
But this would make all images in all tables everywhere in your site be that size. That's why you need to inspect the page to find html element's id whenever you can. For example, the id on the table in adoptable shop is "shop" and you could target the images inside with:
table#shop img {width: 150px, height: 150px;}
You just need to add lines like this to your theme's css stylesheet.
It might honestly be better to simply resize all of your images. You should be able to google up a tool to batch resize your images so you don't have to do them all by hand.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.
Last edited by Kyttias; 02-02-2016 at 08:34 PM.
|