Quote:
Originally Posted by arossphoto
Never mind! I'm an idiot! I sometimes forget to look in the obvious places first.
I hope this isn't another stupid question but I tried setting Categories Per Row to 1, and it look fine FireFox but in IE it looks like this. See attached image:
|
Hehe. That was a simple arithmetic problem. Incase you were wondering, what happened was this. The width of the tables were set using this equation:
$catwidth = 1/$catsperrow;
So when you have 1/1(you set one category per row), it gives you 1, instead of 100. And even when you have 2 per row, it gives you .5 instead of 100. The quation has been changed to:
$catwidth = 1/$catsperrow * 100;
And now it gives you 100 if you set 1 and 50 if you set 2. Anyways, just thought i'd share that lol. You can either redownload the zip and upload that sr_classifieds.php or take the one i'll attach for you here.