MyBB Community Forums

Full Version: fit to page in portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
how can i fit images to be suitable in the annoncments in portal page

http://thegame-zone.com

cause they get out of boarders
You're using Highslide plugin which sets the max-width to 400px while it should be 100%.

You can find this in global.css:
.scaleimages img {
   max-width: 100%;
}
and change it to:
.scaleimages img, .scaleimages iframe {
   max-width: 100% !important;
}
is this plugin works with 1.8.1
works like a charm
thanks