Site Links
Home
Features
Documentation
Pricing & Order
Members Area
Support Options
Who's Online
3 Registered (andreya, MikeBTech, 1 invisible), 23 Guests and 23 Spiders online.
Key: Admin, Global Mod, Mod
Top Posters
Gizmo 11678
Rick 7551
Ian 4099
Mark S 3969
ntdoc 3102
Sirdude 2041
jgeoff 1876
David Dreezer 1750
driv 1557
AllenAyres 1523
Latest Photos
Carrie - So Very
Testing
Test Photo
4TH of July at the river!
Test shots from D300 part 3
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: 83
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: 2041
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
_________________________

A taxpayer voting for Obama is like a chicken voting for Colonel Sanders.

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

Registered: 06/05/06
Posts: 83
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: 2041
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..
_________________________

A taxpayer voting for Obama is like a chicken voting for Colonel Sanders.

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

Registered: 06/05/06
Posts: 83
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: 2041
Loc: SoCal, USA
i'm guessing you are using IE6, which essentially ignores max-width and max-height..
_________________________

A taxpayer voting for Obama is like a chicken voting for Colonel Sanders.

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


Registered: 06/04/06
Posts: 11678
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: 2041
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: 83
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: 83
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

Recent Topics
Community Spotlight
by Thelockman
Today at 08:04 AM
Protecting Board from hackers
by duquesne
Today at 04:48 AM
Change New Topic text
by MLD
08/25/08 04:59 PM
Reason for deleting a thread
by MattUK
08/24/08 09:40 PM
Adding rss feed to a custom portal island
by alex26101
08/23/08 09:29 PM
Forum Stats
4016 Members
33 Forums
30842 Topics
156618 Posts

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