#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Nov 9, 2019 10:20:39 GMT -8
Thanks Todge. I am co-admin at toetapping’s forum. The problem is that if you want to manually post a smaller image that the chosen size of the plugin, it won’t do it. You will see what I mean by clicking the link below. I have now changed the forum settings to large image with scroll, but that did no good. I also deleted the plugin and reinstalled it. nicetomeet.proboards.com/thread/14352/member-suggestions?page=1&scrollTo=368372This plugin will resize any image that is above the size you specify in the plugin, regardless of what size you try to post it. If you post an image and specify a size smaller then the plugin settings the image will be ignored. If this is not the case, can you please post or PM me the exact code you using to post the images so I can try it on my forum and hopefully recreate the issue. Thank you.
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 9, 2019 11:17:31 GMT -8
A very helpful member found a way to post a smaller image than the selected image resize size, Todge.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Nov 9, 2019 15:53:07 GMT -8
A very helpful member found a way to post a smaller image than the selected image resize size, Todge. Good to hear, but I'd still like to get to the bottom of this.. max-width works fine with this on my forum, so I did a little digging on your forum.. It seems you have this CSS instruction somewhere on your forum... div.message img { max-width: 640px !important; max-height: 480px !important; } That is overriding any max-width you post for an image, making it larger than the 120px you tried to post at first in the thread you linked to. A normal 'width:120px' would not be overriden and would therefore post correctly.
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 9, 2019 17:04:38 GMT -8
So should I look for the CSS and delete it or change it to something else, Todge?
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 9, 2019 17:58:08 GMT -8
This is in global headers, Todge.
<style type="text/css"> /* Resize All in One Images - Global Header */ /* Signature - Posting Images - Avatar Quote */ div.signature img {max-width:320px !important; max-height:240px !important;} div.message img {max-width:640px !important; max-height:480px !important;} div.message .avatar_size_quote img {max-width:30px !important; max-height:30px !important;} </style>
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Nov 10, 2019 6:24:18 GMT -8
So should I look for the CSS and delete it or change it to something else, Todge? This is in global headers, Todge. <style type="text/css"> /* Resize All in One Images - Global Header */ /* Signature - Posting Images - Avatar Quote */ div.signature img {max-width:320px !important; max-height:240px !important;} div.message img {max-width:640px !important; max-height:480px !important;} div.message .avatar_size_quote img {max-width:30px !important; max-height:30px !important;} </style> That's the one.. Everything you are now doing is trying to get around that code, so you can either go ahead and remove it, or, if you want to keep the signature and avatar aspects of the code, change it to.. <style type="text/css"> /* Resize Signature and avatar Images - Global Header */ div.signature img {max-width:320px !important; max-height:240px !important;} div.message .avatar_size_quote img {max-width:30px !important; max-height:30px !important;} </style>
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 10, 2019 10:03:39 GMT -8
I exchanged the codes, Todge, but the problem persists with both images as posted above, being the same size.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Nov 10, 2019 15:08:09 GMT -8
I exchanged the codes, Todge, but the problem persists with both images as posted above, being the same size. I can see that you have changed the code above, but, a little further down the code is repeated... That code is overriding the first iteration and can be removed.
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 10, 2019 17:12:23 GMT -8
Thanks for noticing that the code was duplicated, Todge. I removed it.
Unfortunately, both images are still the same size, even though the following reduced percentage is above each image.
First Image - This image has been reduced by 56.7%. Click to view full size.
Second Image - This image has been reduced by 13.2%. Click to view full size.
|
|
Former Member
inherit
guest@proboards.com
87020
0
Nov 22, 2024 3:28:28 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 11, 2019 5:16:17 GMT -8
It is working correctly now, Todge.
We have it currently set at 325 x 325, so when someone posts an image to have it 50%, it won’t appear 50% of 325 x 325, it will appear at 50% of the original image, so it’s best to use numbers, not a percentage when you post an image.
Thank you for your time and effort for correcting the problem for us. We appreciate it.
|
|
inherit
133488
0
Nov 21, 2024 13:05:35 GMT -8
toetapping
1,583
November 2008
toetapping
|
Post by toetapping on Nov 11, 2019 10:21:13 GMT -8
Todge thank you for the time you have spent with our problems. It is appreciated.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Nov 11, 2019 16:28:57 GMT -8
No worries.. Glad to help.
|
|
inherit
261372
0
Jun 10, 2020 17:11:01 GMT -8
kellijaebaeli
21
June 2020
kellijaebaeli
|
Post by kellijaebaeli on Jun 10, 2020 17:09:38 GMT -8
I could not get this plugin to work. I set the max size to 500 (assuming that was a pixel size), and it didn't change attached image size at all.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Jun 10, 2020 17:41:11 GMT -8
I could not get this plugin to work. I set the max size to 500 (assuming that was a pixel size), and it didn't change attached image size at all. Could you please post or PM me a link to your forum, specifically the thread where you are having trouble and have it viewable by guests. Thank you.
|
|
3rd
New Member
Waiting for springtime
Posts: 28
inherit
261221
0
Jan 14, 2022 0:38:53 GMT -8
3rd
Waiting for springtime
28
May 2020
3rd
|
Post by 3rd on Jul 18, 2020 23:58:38 GMT -8
Hello Todge. My forum onthe.boards.net/I am using this setting Display Large Images At Full Size with a Scroll Bar. My problem when I set the max width to 900 the plugin stops working. If I set the height above 780 the plugin stops working. I have it set at Width 880 and height 780 and it works great but I need it a bit bigger. If I leave the Height blank the plugin stops working. I also have a test forum and get the same results. I have it set to use the overlay only. We take images of bugs and bees etc so need to have the images quite large. I have checked on all main browsers but it is the same. Great plugin by the way . Thanks.
|
|