Search code examples
jqueryfirefoxalignmentgalleria

JQuery Galleria alignment in Firefox


I have added JQUERY Galleria a site that I have created but am having problems with the alignment in firefox.

Chrome renders the galleria fine, but in Firefox the actual galleria displays to the right of the div that i want it in.

See http://www.vimisolanki.com/index.php/home/professional as an example of what I mean.

I've tried looking at the styling using FireBug within Firefox but I cant seem to figure out what the issue is.

Many thanks


Solution

  • The #galleria container is not clearing properly the floated divs above it, your title span5 div in this case, so just clear it properly and it works.

    #galleria {
        clear: both;
    }