I'm currently running a wordpress blog and I do alot of copy and paste images (aka hotlinking), what I'm experiencing is when I paste images too wide it screws my tables.. if I have to resize each one manually it would be a hideous tasks.. I search alot for hotlinking image resizer plugins but with no luck. Is there a .css ir wordpress settings where I could input maxium width (433px) as my default size so when I paste images it's automatically resize a bunch of picture for me? Please see screenshot which illustrate the TOP image is extending way beyond table width allowed. Thanks in advance, -Minh
If you want to use CSS, you can put this line to your CSS file: .post img {max-width: 100%} Code (markup): Or you can use some lightbox script for WordPress.
Under which part in the in the stylesheet should I put .post img {max-width: 100%} to? Also, could you give me the link or the name of plugins
You can put this code in the bottom of your CSS file. For plugins, please search in WP Extends with keywords "lightbox". There're many of them, and I don't know what's the best.
Place this in your header and that should do it. <style type="text/css"> .post img {max-width: 100%} </style> Code (markup):