I found a big bug on Firefox

Posted in: Newspaper
Post count: 28

Hello devs,

I have found a nasty bug, which only affects the Firefox browser. Here is the code, which doesn’t work on Firefox – http://pastebin.com/3EhfgUbc

If you paste it into WordPress, then set the theme like this: http://puu.sh/bSJJk/93919d2455.png you should get a glitch like this: http://puu.sh/bSJLs/e8366658e3.jpg

If you open the same piece of code in Chrome, or Safari, it works beautifully, like this: http://puu.sh/bSJRx/38b194cfca.jpg

From what I could see, Firefox is having some serious issues with an image being wrapped in <div class=”td-paragraph-padding-3″>

I would really appreciate if you could have a look at it, as it is ruining an otherwise beautiful design 🙂

Thanks for any help!
Lukas

Post count: 6600

Hi,

Thnaks for reporting this, I have tested the code of your post and seems that you are right. This happens to the <div class=”td-paragraph-padding-3″> div which add the padding left and right and noticed that it’s because of using display-inline.
I have added this on our issue list and we will investigate this. You can use this custom css for FF until we fix this.

@-moz-document url-prefix() {
.td_box_right {
    clear: left;
}
.post p {
    clear: left;
}
.td-paragraph-padding-0, .td-paragraph-padding-1, .td-paragraph-padding-2, .td-paragraph-padding-3, .td-paragraph-padding-4 {
    display: block;
}
}

Sorry abut this!

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.