Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Who's Online
0 registered (), 14 Guests and 18 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member

art
Registered: 05/09/07
Posts: 14
Top Posters (30 Days)
Ruben Rocha 165
Rick 116
Gizmo 105
Thelockman 61
driv 52
AllenAyres 35
ScriptKeeper 34
Mark S 30
Ian 29
phoebe 25
Latest Photos
My Home System
test photo gallery
Bernese Mountain Dogs
My Daimler
Dorado and shark
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#215272 - 07/07/08 06:10 PM Image Size In Posts
FordDoctor Offline
journeyman

Registered: 06/05/06
Posts: 91
Loc: New Joisey!
This is not a customizing issue. I love having images allowed in posts in my forum because it adds so much to the content especially with technical images. I have PhotoPost integrated with my forum and most of my community that posts images uses it. I have it set up to automatically resize images to a size below 600 pixels wide to work well in the forums. I have one member that insists on posting pictures from his own host with large resolution/dimensions and it forces the forum to widen, most times off screen.

Is there a way to prevent the dynamic resizing of my forum when these images are posted? My forum dimensions are set to a specific dimension but when this happens that apparently gets ignored.

~or~

Is there a way to prevent images from anywhere but my server from displaying?

I suppose I could whip this member into submission but he is likely not going to be the last. Aside from that I don't want to be accused of bandwidth theft.
_________________________
Ford diesel master technician by day...
Webmaster by night! cool
FordDoctorsDTS.com running UBB Threads 7.0.2

Top
#215275 - 07/07/08 10:53 PM Re: Image Size In Posts [Re: FordDoctor]
Sirdude Moderator Offline

*****

Registered: 04/19/07
Posts: 2066
Loc: SoCal, USA
add to the Extra Properties section in each style on your board.

.post-content img {
max-width: 600px;
}

save the style smile

you can also add a max-height, if he's posting very TALL pictures wink
_________________________


Top
#215277 - 07/08/08 03:27 AM Re: Image Size In Posts [Re: Sirdude]
FordDoctor Offline
journeyman

Registered: 06/05/06
Posts: 91
Loc: New Joisey!
That unfortunately did not work. I added it to all syles just to be sure. Tested it a few times with one of the offending photos as a reply, new post etc. Is it possible to use htaccess to simply block outside images and force the use of my site's gallery? I do like the idea of trying to do this from within UBB Threads though!
_________________________
Ford diesel master technician by day...
Webmaster by night! cool
FordDoctorsDTS.com running UBB Threads 7.0.2

Top
#215283 - 07/08/08 08:26 AM Re: Image Size In Posts [Re: FordDoctor]
Sirdude Moderator Offline

*****

Registered: 04/19/07
Posts: 2066
Loc: SoCal, USA
um that should work.. can you point me to a thread in question ? i'll dally about with Firebug and should get it right. i might have a typo

not sure.. but i've done similar to this already and got good results..
_________________________


Top
#215303 - 07/08/08 05:19 PM Re: Image Size In Posts [Re: Sirdude]
FordDoctor Offline
journeyman

Registered: 06/05/06
Posts: 91
Loc: New Joisey!
I sent you a PM - thanx for messing with this!
_________________________
Ford diesel master technician by day...
Webmaster by night! cool
FordDoctorsDTS.com running UBB Threads 7.0.2

Top
#215305 - 07/08/08 05:37 PM Re: Image Size In Posts [Re: FordDoctor]
Sirdude Moderator Offline

*****

Registered: 04/19/07
Posts: 2066
Loc: SoCal, USA
i'm guessing you are using IE6, which essentially ignores max-width and max-height..
_________________________


Top
#215307 - 07/08/08 05:47 PM Re: Image Size In Posts [Re: Sirdude]
Gizmo Moderator Offline

***

Registered: 06/04/06
Posts: 11968
Loc: Portland, OR; USA
Originally Posted By: Sirdude
i'm guessing you are using IE6, which essentially ignores max-width and max-height..
As does FFoX3 :snicker:
_________________________
UGN Security, Elite Web Gamers & VNC Web Design Owner
Longtime UBB Supporter, UBB7 Beta Tester & Resident Post-A-Holic

Top
#215308 - 07/08/08 05:51 PM Re: Image Size In Posts [Re: Gizmo]
Sirdude Moderator Offline

*****

Registered: 04/19/07
Posts: 2066
Loc: SoCal, USA
Originally Posted By: Giz-UNiT
As does FFoX3 :snicker:
no FF3 does not ignore it. it does it right

i just verified this on his site, as would be expected

that's css2 stuff and all browsers should handle it smile

Workaround and it's ugly

another workaround that i've done for avatars on certain sites, which would apply here.. is to:

1) run a script that trundles thru all posts and searches for externally linked images.
2) that script then grabs each one and sizes them properly and stores them on your server
3) modify the img tag parser to do this for any [img] tag in the future..

i used that idea with avatars, to corral all the external ones, upload them, resize and then i turned off external avatars..

other option is to disallow IE5.5 and IE6, but it's prolly not a good idea laugh

Top
#215312 - 07/08/08 08:05 PM Re: Image Size In Posts [Re: Sirdude]
FordDoctor Offline
journeyman

Registered: 06/05/06
Posts: 91
Loc: New Joisey!
Originally Posted By: Sirdude
Workaround and it's ugly


I read through that but not sure where to place the code. It is not working anywhere I put it. If I read the info in the link it looks like I can place the code anywhere in the document I wish to control image size. I tried the header and in the style editor under post content... eek
_________________________
Ford diesel master technician by day...
Webmaster by night! cool
FordDoctorsDTS.com running UBB Threads 7.0.2

Top
#215342 - 07/09/08 08:55 PM Re: Image Size In Posts [Re: FordDoctor]
FordDoctor Offline
journeyman

Registered: 06/05/06
Posts: 91
Loc: New Joisey!
Well the link you posted was a good start. I did some Googling and found several different methods of attempting this. I then stumbled upon a post on the Eve support forums and modified the code to work within UBB. I tested it in IE-6 and FF and it works in both but I can't test it in any other browsers so if anyone else tries this let us know that you verified that it works or not. Don't be impressed - I read a lot and try many times until something works or I step in shyt! laugh I hope someone else finds this helpful too.

Code:
.post_inner img{
max-width:650px;
width: expression(this.width > 650 ? 650: true);
} 
_________________________
Ford diesel master technician by day...
Webmaster by night! cool
FordDoctorsDTS.com running UBB Threads 7.0.2

Top
Page 1 of 2 1 2 >


Shout Box

Today's Birthdays
Eric Flyxe, mark_l_88@yahoo.com
Recent Topics
restricting a media tag to a single forum...
by bakerzdosen
Yesterday at 12:52 PM
Recover topics??
by femistyle
Yesterday at 12:22 PM
duplicate entries in viewmessage.php lang file (7.4.1)
by alnadabi
Yesterday at 05:54 AM
Order of variables in language files should be permanent
by alnadabi
Yesterday at 05:12 AM
How do I set Moderation Queue for an individual user?
by luket
11/20/08 11:28 AM
Forum Stats
4249 Members
33 Forums
30488 Topics
154658 Posts

Max Online: 978 @ 06/24/07 08:19 PM