Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Who's Online
2 registered (Djuma, packlite), 23 Guests and 18 Spiders online.
Key: Admin, Global Mod, Mod
Featured Member
Registered: 12/29/03
Posts: 1667
Top Posters (30 Days)
Ruben Rocha 103
Rick 80
Mark S 71
Thelockman 58
Gizmo 54
driv 35
ntdoc 32
Sirdude 32
packlite 24
AllenAyres 22
Latest Photos
bear test
Beach Barbie-Q
Sunset
Accept the challenge!
Trees
Page 1 of 2 1 2 >
Topic Options
Rate This Topic
#215272 - 07/07/08 06:10 PM Image Size In Posts
FordDoctor Offline
member

Registered: 06/05/06
Posts: 100
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: 2122
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
member

Registered: 06/05/06
Posts: 100
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: 2122
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
member

Registered: 06/05/06
Posts: 100
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: 2122
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: 12089
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: 2122
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
member

Registered: 06/05/06
Posts: 100
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
member

Registered: 06/05/06
Posts: 100
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
Anoneguy
Recent Topics
How to Change Link Color / Underline in styles?
by ECNet
Today at 10:00 PM
Chaging the "max online" number and date
by wanted
Today at 02:22 PM
7.4.1. In Threaded Mode - "Mark All Read" Doesn't Work
by packlite
Today at 10:26 AM
Custom island with sql connection
by Robje01
Today at 09:13 AM
Arabic letters test
by Cowabanga
Today at 04:47 AM
Forum Stats
4296 Members
33 Forums
30686 Topics
155997 Posts

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