
Announcement
Collapse
No announcement yet.
Search Result
Collapse
10 results in 0.0126 seconds.
Keywords
Members
Tags
-
It's alright to carry around guns, but no swearing on TV!!!...
-
You'd need to use PHP (or something else) to work out half of the width/height and put it in the width/height values of the image tag.
Look up the PHP image functions if you have PHP.
Leave a comment:
-
w3 develop the Web Standards, they say it, go complain to them if you have issues with it. It's a fact, tables should _NOT_ be used for layout. End of story.
Leave a comment:
-
Exactly, tables were designed for tabular data... CSS should be used for design. He's obviously using tables for his layout though, which I was saying is wrong.
Leave a comment:
-
I know... I'm just pointing out that using tables is never a good idea :P
Leave a comment:
-
-
Cellspacing can be done in CSS, but is not supported by IE, and some other browsers.
If you want 0 cellspacing, you may use border-collapse: collapse; in CSS, and that will work in IE also....
Leave a comment:
-
Okay, I coded it, and it's rather simple... Took less than 2 minutes
PHP Code:<?
$url = 'someurl';
if (strlen($url) > 50)
echo '<a href="',$url,'">',substr($url,0,35),'...',substr($url,-15),'</a>';
Leave a comment:
-
vBulletin's URL shortener seems to work differently... It doesn't just do a simple "if it's more than 30 chars, truncate it and add ..." It adds the .'s in certain places in the string, then...
Leave a comment:
-
Leave a comment:
Leave a comment: