Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Този сайт ще има ограничена функционалност, докато се извършва тече неговата поддръжка. Ако дадена статия не може реши проблема ви и искате да зададете въпрос, нашата общност е готова да ви помогне на @firefox в Twitter и /r/firefox в Reddit.

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Learn More

Why does my website not render on your browser

  • 5 отговора
  • 2 имат този проблем
  • 2 изгледи
  • Последен отговор от will.sarsfield

more options

Hello I have a wordpress site that showcases wedding photography. I use your browser all the time, and built the site using your browser. Recently, in the last month, the portfolio page has not been rendering correctly on Firefox. It works correctly on safari, chrome and all mobile browsers. Are you able to help me find out why this no longer works? the address is: www.rainbowrowphotography.com/portfolio under 'full wedding features' there should be a grid of six image blocks. My theme is responsive, so I cannot understand why this is happening. Many thanks. Will

Hello I have a wordpress site that showcases wedding photography. I use your browser all the time, and built the site using your browser. Recently, in the last month, the portfolio page has not been rendering correctly on Firefox. It works correctly on safari, chrome and all mobile browsers. Are you able to help me find out why this no longer works? the address is: www.rainbowrowphotography.com/portfolio under 'full wedding features' there should be a grid of six image blocks. My theme is responsive, so I cannot understand why this is happening. Many thanks. Will

Избрано решение

By default, tables stretch to fit their contents. When you style the grid as a table, Firefox doesn't feel compelled to reduce the image size. In order to force that, you need to specify that the layout of the table is fixed rather than flexible. This is the additional style rule that does that:

.grid-wrap .grid-row {
    table-layout: fixed;
}

Since you appear to be using a paid theme, I suggest contacting their support to learn how best to fix this, and point them to this thread as well as your page.

Actually, I see the company that sells this theme posted a similar workaround for a different component here:

http://themeforest.net/item/oshine-creative-multipurpose-wordpress-theme/9545812/comments?page=43#comment_10119683

Прочетете този отговор в контекста 👍 1

Всички отговори (5)

more options

Suggestion; The main pictures are very large. Reducing the size will also reduce the time needed to load the pictures.

I loaded the webpage on Firefox and Win IE. They look the same. Describe what you see as different.

Your zoom controls.

<Control> + (plus) enlarge <Control> - (minus) reduce <Control> 0 (zero) restore

more options

Thanks.

I will reduce those.

Are you seeing a grid of 6 images? I am getting two from the grid and everything else cut off.

Zoom doesn't seem to change it.

more options

I don't know what is wrong in the current Firefox release, but it works for me in the current beta version and later. I assume that is has something to do with how "display:table" works.

more options

Избрано решение

By default, tables stretch to fit their contents. When you style the grid as a table, Firefox doesn't feel compelled to reduce the image size. In order to force that, you need to specify that the layout of the table is fixed rather than flexible. This is the additional style rule that does that:

.grid-wrap .grid-row {
    table-layout: fixed;
}

Since you appear to be using a paid theme, I suggest contacting their support to learn how best to fix this, and point them to this thread as well as your page.

Actually, I see the company that sells this theme posted a similar workaround for a different component here:

http://themeforest.net/item/oshine-creative-multipurpose-wordpress-theme/9545812/comments?page=43#comment_10119683

more options

Thank you very much! You nailed it! Saved me from so much head scratching.