What Do You Need In The Xf2 Xengallery Version? Vote for your choices here: http://www.sonnb.com/threads/what-do-you-need-in-the-xf2-xengallery-version.1539/

Fixed Css-bug

Discussion in 'Bug Reports' started by hollosch, Aug 2, 2016.

  1. hollosch

    hollosch Authorized Member Authorized

  2. sonnb

    sonnb Administrator Staff Member

    It is because of both. In the gallery style, it has float: left property on the username element and in your style it has display: inline on the blockquote, article element. This combination makes the above issue on Firefox and probably on older version of IE as well.

    So you have two choices: Remove float on gallery or display on your style. I suggest you stick with the first choice which will not affect the rest parts of your site.

    Please do this in following templates: sonnb_xengallery_photo_view.css, sonnb_xengallery_photo_view_overlay.css

    HTML:
    .commentContainer .commentInfo .commentContent .username.poster {
        float: left; <--- Remove this line
            margin-right: 5px;
    }
     
  3. sonnb

    sonnb Administrator Staff Member

    This is now removed by default.
     

Share This Page