asabet
07-27-2010, 10:00 PM
This mod will automatically resize images in the vBadvanced News Module to a given maximum width.
Step 1:
Go to adv_portal_newsbits template (under vbAdvanced CMPS templates) and search for:$news[message]
If you can't find that, then search for:<blockquote class="postcontent restore">{vb:raw news.message}</blockquote>
Immediately before whichever of those you find in your template, add:<div class="news IMG">
Save
---------------------
Step 2:
Add the following under Additional CSS Definitions (replace "512" with whatever max width you want):.news IMG
{
max-width: 512px;
height: auto;
}
or for better (but still not perfect) support in Internet Explorer, use this instead:
.news IMG
{
max-width:512px;
width: expression(this.width > 512 ? 512: true);
height: auto;
}
Save
That's it. Worked for me. This mod is unsupported, as I have almost no knowledge about these things. I was able to get it working based on what I found here: http://www.vbadvanced.com/forum/showthread.php?t=40139.
The vB4 version of this mod is here: https://vborg.vbsupport.ru/showthread.php?t=247434
Step 1:
Go to adv_portal_newsbits template (under vbAdvanced CMPS templates) and search for:$news[message]
If you can't find that, then search for:<blockquote class="postcontent restore">{vb:raw news.message}</blockquote>
Immediately before whichever of those you find in your template, add:<div class="news IMG">
Save
---------------------
Step 2:
Add the following under Additional CSS Definitions (replace "512" with whatever max width you want):.news IMG
{
max-width: 512px;
height: auto;
}
or for better (but still not perfect) support in Internet Explorer, use this instead:
.news IMG
{
max-width:512px;
width: expression(this.width > 512 ? 512: true);
height: auto;
}
Save
That's it. Worked for me. This mod is unsupported, as I have almost no knowledge about these things. I was able to get it working based on what I found here: http://www.vbadvanced.com/forum/showthread.php?t=40139.
The vB4 version of this mod is here: https://vborg.vbsupport.ru/showthread.php?t=247434