MyBBHacks.com Plugins for MyBB

Full Version: Category-Image centered?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I really do not want to annoy you, but I have one more question.

Is it possible to get the category graphic in the center of the td?
You would need to add align="center" that td
but where do I find that td? Wink
ezgallery.php line 915 to 918
Code:
                    if($row['filename'] == '')
                        echo '<td class="trow1" width="10%"><a href="' . $cat_url . '"><img src="' . $row['image'] . '" alt=""  /></a></td>';
                    else
                        echo '<td class="trow1" width="10%"><a href="' . $cat_url . '"><img src="' . $gallerySettings['gallery_url'] . 'catimgs/' . $row['filename'] . '" alt="" /></a></td>';
thank you very much!
sorry, it's me again

I changed this to:
Code:
if($row['filename'] == '')
                        echo '<td class="trow1" width="10%" align="center"><a href="' . $cat_url . '"><img src="' . $row['image'] . '" alt=""  /></a></td>';
                    else
                        echo '<td class="trow1" width="10%" align="center"><a href="' . $cat_url . '"><img src="' . $gallerySettings['gallery_url'] . 'catimgs/' . $row['filename'] . '" alt="" /></a></td>';

but the images are still at the left side of the td
Is that a subcateogry or main category
subcategory
Then it is around lin 11287 to 11290
I found it this moment by myself; thank you

that looks much better!