I'm currently working on a website. One of the things it will do is allow the admin to post news. all my news divs are fixed in height and width.
PHP queries the database for the text and cuts it at 500 characters lenght, so the text doesn´t exit my div.
Of course this is not the best approach since if I use all caps, 500 caps characters take more space than 500 normal ones....
If I also use the /br/ tag to change lines, that is also a problem, since php ->(i think) won't count that as empty spaces...
As the title suggests... I would like to know if there is any way of limiting the ammount of text in my div by using it's height....
Thanks in advance!