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:
Go to additional.css template (under CSS templates) and add the following to that template (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 vB3.8 version of this mod is here: https://vborg.vbsupport.ru/showthread.php?t=247437
FReeSTER
07-28-2010, 03:12 AM
Looks like a great idea but i dont have neither of those codes on my template.
<vb:if condition="!$mod_options['portal_news_legacy']">
<h2 class="blockrow">
<vb:if condition="$mod_options['portal_news_showicon']">{vb:raw vba_style.portal_blockbullet}</vb:if> {vb:raw news.prefix} <a href="{vb:raw vboptions.bburl}/{vb:link thread, {vb:raw news}}">{vb:raw news.title}</a>
</h2>
</vb:if>
<div class="<vb:if condition="$mod_options['portal_news_legacy']">blocksubhead<vb:else />blockrow</vb:if>">
<div<vb:if condition="$mod_options['portal_news_showrating'] AND $news['rating']"> class="vba_rating{vb:raw news.rating}"</vb:if>>
<vb:if condition="$news['subscribed'] AND $mod_options['portal_news_showsubscribed']">
<img alt="" class="inlineimg" src="{vb:stylevar imgdir_misc}/subscribed.gif" title="{vb:rawphrase you_are_subscribed_to_this_thread}" />
</vb:if>
{vb:raw news.dateposted} - {vb:rawphrase by_x, {vb:link member, {vb:raw news}, null, 'postuserid', 'postusername'}, {vb:raw news.postusername}}
</div>
</div>
<div class="blockrow">
<vb:if condition="$show['paperclip']">
<span style="float:{vb:stylevar right}">
<a href="#" onclick="vba_attach_win({vb:raw news.threadid}); return false"><img class="inlineimg" src="{vb:stylevar imgdir_misc}/paperclip.gif" border="0" title="{vb:rawphrase x_attachments, {vb:raw news.attach}}" alt="" /></a>
</span>
</vb:if>
<table width="100%">
<tr>
<td valign="top">
<vb:if condition="$news['avatarpath']">
<img align="{vb:stylevar left}" style="padding: 0 {vb:math {vb:stylevar padding}/2} {vb:math {vb:stylevar padding}/2} 0" alt="{vb:rawphrase xs_avatar, {vb:raw news.postusername}}" border="0" src="{vb:raw news.avatarpath}" />
</vb:if>
{vb:raw news.message}
</td>
</tr>
</table>
<vb:if condition="$show['signature']">
<div>__________________<br />{vb:raw news.signature}</div>
</vb:if>
</div>
<vb:if condition="$news['attachment']">
<div class="attachments">
<fieldset>
<legend>{vb:rawphrase attached_files}</legend>
{vb:raw news.attachment}
</fieldset>
</div>
</vb:if>
<div class="postbit vba_news">
<div class="postfoot" style="white-space: nowrap">
<div class="textcontrols">
<span class="postcontrols">
<vb:if condition="$show['editbutton']">
<a class="editpost" href="{vb:raw vboptions.bburl}/editpost.php?{vb:raw session.sessionurl}do=editpost&p={vb:raw news.postid}"><img src="{vb:stylevar imgdir_button}/trans_40b.png" id="editimg_{vb:raw news.postid}" alt="{vb:rawphrase edit_delete_message}" /> {vb:rawphrase edit_post}</a>
</vb:if>
<vb:if condition="$show['replybutton']">
<span class="seperator"> </span>
<a class="quickreply" href="{vb:raw vboptions.bburl}/newreply.php?{vb:raw session.sessionurl}do=newreply&t={vb:raw news.threadid}" rel="nofollow"><img id="replyimg_{vb:raw news.postid}" src="{vb:stylevar imgdir_button}/trans_40b.png" alt="{vb:rawphrase quick_reply_to_this_message}" /> {vb:rawphrase reply}</a>
</vb:if>
<vb:if condition="$mod_options['portal_news_showsendfriend']">
<span class="seperator"> </span>
<a href="{vb:raw vboptions.bburl}/sendmessage.php?{vb:raw session.sessionurl}do=sendtofriend&t={vb:raw news.threadid}" rel="nofollow" style="padding: 0"><img alt="" border="0" src="{vb:stylevar imgdir_button}/sendtofriend.gif" title="{vb:rawphrase send_to_friend}" style="position: relative" /></a>
</vb:if>
<vb:if condition="$mod_options['portal_news_showprintable']">
<span class="seperator"> </span>
<a href="{vb:raw vboptions.bburl}/printthread.php?{vb:raw session.sessionurl}t={vb:raw news.threadid}" rel="nofollow" style="padding: 0"><img alt="" border="0" src="{vb:stylevar imgdir_button}/printer.gif" title="{vb:rawphrase show_printable_version}" style="position: relative" /></a>
</vb:if>
</span>
<span class="postlinking">
<vb:if condition="$mod_options['portal_news_allowreplies']">
{vb:raw news.replycount} <vb:if condition="$news['reply_noformat'] == 1">{vb:rawphrase reply}<vb:else />{vb:rawphrase replies}</vb:if>
</vb:if>
<vb:if condition="$mod_options['portal_news_showviews'] AND $mod_options['portal_news_allowreplies']"> | </vb:if>
<vb:if condition="$mod_options['portal_news_showviews']">
{vb:raw news.views} {vb:rawphrase views}
</vb:if>
</span>
</div>
</div>
</div>
<br />
<br />:(:(:(:o:confused:
Blooded
07-28-2010, 04:16 AM
Didnt work just broke everything when i click in portal send me to mysite.com/register.php :s and everything looks bad
asabet
07-28-2010, 03:31 PM
El Intocable, in your case I think you'd add it just before {vb:raw news.message}
Blooded, sorry it isn't working for you. Works perfect on my site running vB4.0.5 and vBa CMPS 4.0.1.
FReeSTER
07-29-2010, 01:29 AM
El Intocable, in your case I think you'd add it just before {vb:raw news.message}
Thank you bro, it worked very good on vb 4.0.3
Blooded
07-29-2010, 05:15 AM
El Intocable, in your case I think you'd add it just before {vb:raw news.message}
Blooded, sorry it isn't working for you. Works perfect on my site running vB4.0.5 and vBa CMPS 4.0.1.
i have the same version as you maybe i edit wrong :confused:
Thanks anyway :)
Winter Sonata
08-29-2010, 09:46 PM
works like a sharm :)
but there are 2 of ''' {vb:raw news.message} ''' choose the first one not the other ;)
installed
zonaenlinea
09-13-2010, 12:13 AM
for vBadvanced 4.0.0 ?
in vbulletin 4.0.6 ?
work great thank very much.
elwachiman
09-23-2010, 03:44 AM
Works Perfect In Vb 4.0.7 And Vbadv 4.0.1
digitaldome
02-12-2011, 08:47 AM
thanks. working fine with vBadvanced CMPS v4.1.0
Juggernaut
05-01-2011, 06:40 AM
Working good :D
dr.tawy
05-21-2011, 08:39 PM
Great Work
Merenguista
05-22-2011, 09:22 AM
thanks
Stefanus
05-24-2011, 08:00 PM
To resize the image to max- width and height the following code can be used:
.news IMG {
max-width: 150px;
max-height: 150px;
width: expression(this.width > 150 ? "150px" : true);
height: expression(this.height > 150 ? "150px" : true);
}
vBadvanced CMPS v4.0.1 - vBulletin™ Version 4.1.2
hanhdn
10-17-2011, 10:24 AM
thank very usefull
msametg
11-22-2011, 07:53 AM
thanks. it works perfect.
usuyusu
11-25-2011, 09:10 AM
Great!!!!!
I have been looking for something like this for months!!!!
:)
THANK YOU!!!!
:)
You can see it working at my site guys!!!
mradlin
12-12-2011, 01:20 AM
Working great!!
Thanks
CountRock
03-04-2014, 12:53 PM
Works great! thanks!
donkspurs
07-20-2014, 04:14 PM
Works brilliantly! Thank you!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.