Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthordankirsh
    • CommentTimeJun 6th 2006
     
    There are two issues I need help with, as I am totally stumped. First of all, if you go to the website below you will find the gallery I am referring to.

    http://www.dankirsh.com/

    1) If you look at the site in firefox, the padding works to make the borders on the photos, but in IE it acts as if padding is 0. I cant figure out why the discrepency. I have my xhtml 1.0 transitional doctype at the top, and it seems as though it should work.

    2) Second, pertaining to several sections, but here is an example:

    http://dankirsh.com/index.php?level=collection&id=4

    It seems as though there should be an extra thumbnail in the first row, but it does not fit. However, the titles are not too long, so that should not matter. How come it selectively does this on some pages, but on other pages it can fit another thumbnail in?

    Thanks in advance for any ideas on how to fix these issues.
    • CommentAuthordankirsh
    • CommentTimeJun 7th 2006
     
    I figured out the second problem is a bug in gallery.php that adds in an extra space before the <br /> after the thumbnail. I will find the line that causes this and report the line change necessary to fix it after I do that.
    • CommentAuthordankirsh
    • CommentTimeJun 7th 2006
     
    As promised, here is the solution to the second problem. In file gallery.php, change line 514 to:

    $output .= '</a><br />';

    And delete the line underneath it. Essentially just make sure those two tags are on the same line. This gets rid of an extra space that was getting inserted that is not present in the other views.

    Now I just have to solve the padding issue.