A APPG Registered Feb 1, 2023 Thread starter #1 Hey guys, is there any addon to shrink images in forum/chat?
Solution A A Alan Feb 2, 2023 Code: .bbImage { width: auto; height: 150px; text-align: center; border-radius: 4px; }
A Alan Registered Feb 2, 2023 #2 Code: .bbImage { width: auto; height: 150px; text-align: center; border-radius: 4px; } Upvote 1 Downvote Solution
wikislo Registered Nov 28, 2024 #4 CSS: .bbImage { width: 100%; height: auto; margin: auto; border: solid 1px #bbb; padding: 4px; max-width: 100%; @media (min-width: 1024px) { width: auto; max-width: 600px; } @media (min-width: 1200px) { width: auto; max-width: 800px; } } Upvote 0 Downvote
CSS: .bbImage { width: 100%; height: auto; margin: auto; border: solid 1px #bbb; padding: 4px; max-width: 100%; @media (min-width: 1024px) { width: auto; max-width: 600px; } @media (min-width: 1200px) { width: auto; max-width: 800px; } }