PDA

View Full Version : Miscellaneous Hacks - Resize Images in vBadvanced News Module


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

Winter Sonata
08-29-2010, 09:18 PM
works like a charm

SilabGarza
10-25-2010, 09:06 PM
can you integrate it with the nCode image resizer add-on please?

TriAxis
03-07-2011, 07:53 AM
Was looking for this exact thing tonight. Works like a champ!

Joehawary
09-13-2016, 07:54 PM
If you want it to work the same as your theme, just use <div class="content"> so you don't need any further CSS