Jump to content

[SOLVED] Images


DJTim666

Recommended Posts

How can I stop an image from stretching a table? I am allowing users to use BBCode to add images to their profiles/forum signature, and if the image is big it stretches the table and makes everything look like crap.

 

Does anyone know of a way to stop this? Or would i just have to limit the width upon inserting it into the database?

 

This is the preg_replace I am using for images...

 

<?php
$done = preg_replace("/\[img\](.+?)\[\/img\]/", '<img src="$1">', $done);
?>

 

Any suggestions?

 

--

DJ

Link to comment
Share on other sites

One quick idea is to add a <div> around their signature area (or use the div that's already there, if applicable) and then use css to set a maximum width for the div. Obviously you could also add some code to look at the image they're trying to input and return an error if they try and use an image that's too large. However, if you don't have much PHP knowledge that might be a little difficult.

 

Here's the <div> code just in case you decide to go that route:

 

<div style="max-width: XXXpx; overflow: hidden;">IMAGE BB CODE HERE</div>

 

Please note that the max-width css property has limited to no support in IE 6-. If your design uses a fixed width I would specify that instead, for better browser support.

 

<div style="width: XXXpx; overflow: hidden;">IMAGE BB CODE HERE</div>

 

Hope that helps.

Link to comment
Share on other sites

I have a very good knowledge of PHP which is why this 'was' posted on the PHP Help board. I wanted to know how to limit it in PHP.

 

The CSS could be helpful for the actual post message though. Thanks for that.

 

Could you please explain limiting with PHP =D.

 

--

DJ

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.