gantry Framework CSS3 no firefox bug?

  • imoweb
  • Avatar de imoweb Autor do Tópico
  • Offline
  • JCB! Novato
  • JCB! Novato
Mais
13 anos 1 semana atrás #80722 por imoweb
imoweb created the topic: gantry Framework CSS3 no firefox bug?
Opa..

Quem usa o firefox (o meu por exemplo 15.0.1 p/mac ) devem ter enfrentado o algum problema com gantry e CSS3 com o background-size : cover

notei que o bg só redimensiona quando usa-se o safari por exemplo mas no firefox redimensionando o navegador ao invez de redimensionar o BG ele continua do mesmo tamanho, alguém sabe por que? o codigo usado foi:

/* Core */
body {background: url(../images/backgroundimage.jpg) no-repeat center center fixed!important;
background-size: cover;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}

se alguém souber como funfar o cover no FF por favor help!!

valews

Please Entrar ou Registrar to join the conversation.


  • imoweb
  • Avatar de imoweb Autor do Tópico
  • Offline
  • JCB! Novato
  • JCB! Novato
Mais
13 anos 1 semana atrás #80825 por imoweb
imoweb replied the topic: Re: (RESOLVIDO)gantry Framework CSS3 no firefox bug?
Opa ..

Bom galera fazendo uns testes consegui fazer funcionar caso alguém tenha o problema altere o código para:

/* Core */
body { background-attachment: fixed !important;
background-clip: border-box !important;
background-color: transparent !important;
background-image: url("../images/backgroundimage.jpg") !important;
background-origin: padding-box !important;
background-position: center center !important;
background-repeat: no-repeat !important;
background-size: cover !important;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
}
testei no safari e no FF e funcionou blz.)

valews..

Please Entrar ou Registrar to join the conversation.

Mais
12 anos 7 meses atrás #87243 por felipecamilomk
felipecamilomk replied the topic: Re: gantry Framework CSS3 no firefox bug?
Onde ponho esse codigo?

Please Entrar ou Registrar to join the conversation.