Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

Vagner Nunes

[Resolvido] Estilos Mozila!

Recommended Posts

Prezados,

 

Boa tarde...

 

Em um projeto que fiz atualmente, fiz um arquivo CSS abaixo, e fiz um include, porém o IE não interpretou os estilos e o site saiu todo desconfigurado, daí fiz um arquivo chamado estilos.asp e coloquei esse arquivo como um include. Daí funcionou beleza, o problema que o Mozila Firefox não está aceitando esse include e sai todo desconfigurado, resumindo só fica perfeitinho no IE, mas o Mozila fica feio.

 

Alguém sabe o porque... O como posso resolver essa questão...

 

<style type="text/css">
<!--
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #FFFFFF;
	background-image: url(imagens/background.jpg);
	background-repeat: repeat;
}
.oneColElsCtr #container {
	width: 46em;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
a:link {
	text-decoration: none;
	color: #000000;
}
a:visited {
	text-decoration: none;
	color: #000000;
}
a:hover {
	text-decoration: underline;
	color: #057BBB;
}
a:active {
	text-decoration: none;
}
.style1 {font-size: 100px}
.style2 {
	font-size: 12px;
	font-weight: bold;
}
.style5 {font-size: 9px}
.style6 {font-size: 14px}
.style7 {font-size: 12px}
-->
.menu { {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; }
.menu_rodape {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-weight: bold; }
.topo {font-size: 24px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
.rodape {font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
.corpo {font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; }

<!--
input { 
background-color: #2C9AD7; 
font: 12px verdana, arial, helvetica, sans-serif;
color:#FFFFFF;
border:1px solid #A7B78A;
}
-->
<!--
.style8 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
-->
<!--
select { 
background-color: #2C9AD7;
font:12px verdana, arial, helvetica, sans-serif;
color:#FFFFFF;
}
-->
<!--
textarea { 
background-color: #2C9AD7;
font:12px verdana, arial, helvetica, sans-serif;
color:#FFFFFF;
}
-->

<!--
form.login {
 background-color: #2C9AD7; 
width:380px;
font: 11px Verdana, sans-serif;
color: #FFFFFF;
border: 1px solid #0000FF;
padding-left:10px;
}
.campos {
background-color:#2C9AD7; 
font: 11px georgia, sans-serif;
color:#FFFFFF;margin-right: 20px;
}
.botao {
background-color: #2C9AD7;
font: 10px Arial, sans-serif;
color: #FFFFFF;
}
-->
</style>

Alquém poderia me ajuda...

 

Sds,

 

Vagner Nunes

Compartilhar este post


Link para o post
Compartilhar em outros sites

tente colocar o code como sendo as funções dentro da página, sem chamar pelo include, e veja o que acontece...

Compartilhar este post


Link para o post
Compartilhar em outros sites

Alguma coisa você está fazendo errado!

 

Crie sua folha de estilo separada e salve com a extensão .css (neste arquivo não declare as tags <style>)

E nas suas páginas, apenas faça a chamada deste arquivo antes do fechamento da tag <head>, ex:

<link href="arquivo.css" rel="stylesheet" type="text/css" />

 

Att.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Eu já tentei também deste modo, em meu servidor local aqui funcionou o IE certinho, porem no servidor Web já não funcionou nem o IE, daí optei por jogar todos os estilos no arquivo estilos.asp e fazer um include, daí o IE funcionou beleza, porém o mozila continuou a não funcionar, será que é alguma configuração errada que fiz no arquivo abaixo:

 

Arquivo estilos.css:

<style type="text/css"> 
<!-- 
body { 
        font: 100% Verdana, Arial, Helvetica, sans-serif; 
        background: #666666; 
        margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */ 
        padding: 0; 
        text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ 
        color: #000000; 
        background-color: #FFFFFF; 
        background-image: url(imagens/background.jpg); 
        background-repeat: repeat; 
} 
.oneColElsCtr #container { 
        width: 46em; 
        background: #FFFFFF; 
        margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */ 
        border: 1px solid #000000; 
        text-align: left; /* this overrides the text-align: center on the body element. */ 
} 
.oneColElsCtr #mainContent { 
        padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */ 
} 
a { 
        font-family: Verdana, Arial, Helvetica, sans-serif; 
        font-size: 12px; 
} 
a:link { 
        text-decoration: none; 
        color: #000000; 
} 
a:visited { 
        text-decoration: none; 
        color: #000000; 
} 
a:hover { 
        text-decoration: underline; 
        color: #057BBB; 
} 
a:active { 
        text-decoration: none; 
} 
.style1 {font-size: 100px} 
.style2 { 
        font-size: 12px; 
        font-weight: bold; 
} 
.style5 {font-size: 9px} 
.style6 {font-size: 14px} 
.style7 {font-size: 12px} 
--> 
.menu { {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; } 
.menu_rodape {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-weight: bold; } 
.topo {font-size: 24px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; } 
.rodape {font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; } 
.corpo {font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; } 
 
<!-- 
input {  
background-color: #2C9AD7;  
font: 12px verdana, arial, helvetica, sans-serif; 
color:#FFFFFF; 
border:1px solid #A7B78A; 
} 
--> 
<!-- 
.style8 { 
        font-family: Verdana, Arial, Helvetica, sans-serif; 
        font-weight: bold; 
} 
--> 
<!-- 
select {  
background-color: #2C9AD7; 
font:12px verdana, arial, helvetica, sans-serif; 
color:#FFFFFF; 
} 
--> 
<!-- 
textarea {  
background-color: #2C9AD7; 
font:12px verdana, arial, helvetica, sans-serif; 
color:#FFFFFF; 
} 
--> 
 
<!-- 
form.login { 
 background-color: #2C9AD7;  
width:380px; 
font: 11px Verdana, sans-serif; 
color: #FFFFFF; 
border: 1px solid #0000FF; 
padding-left:10px; 
} 
.campos { 
background-color:#2C9AD7;  
font: 11px georgia, sans-serif; 
color:#FFFFFF;margin-right: 20px; 
} 
.botao { 
background-color: #2C9AD7; 
font: 10px Arial, sans-serif; 
color: #FFFFFF; 
} 
--> 
</style>

Sds,

 

Vagner Nunes

Compartilhar este post


Link para o post
Compartilhar em outros sites

Não precisa criar um arquivo asp para fazer include, volto a repetir, crie um arquivo .css sem as tags <style> e faça a chamada desse arquivo antes do fechamento da tag <head> das suas páginas. - Não é o IE que está interpretando certo, o FF é que não consegue ler o errado...

E porque está utilizando blocos de estilo como se fossem comentários de html no seu css??? : <!-- asdsadas -->

 

Att.

Compartilhar este post


Link para o post
Compartilhar em outros sites

verifique se no FF não existe nenhum plugin instalado impedindo o funcionamento...

Compartilhar este post


Link para o post
Compartilhar em outros sites

verifique se não é uma config. do FF, sei que algumas config. em certas DIV´s pode dar erro no FF

Compartilhar este post


Link para o post
Compartilhar em outros sites

Olá pessoal beleza...

 

Consegui solucionar o problema. Testei no Google Chrome, Mozila Firefox, Internet Explorer e funcionou.

 

As linhas que não estava lendo eram essas abaixo:

 

Estava assim:

.style5 {font-size: 9px}
.style6 {font-size: 14px}
.style7 {font-size: 12px}
.menu { {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; }
.menu_rodape {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-weight: bold; }
.topo {font-size: 24px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
.rodape {font-size: 10px; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold; }
.corpo {font-size: 12px; font-family: Verdana, Arial, Helvetica, sans-serif; }

Daí modifiquei assim, e funcionou:

.style5 {
font-size: 9px;
}
.style6 {
font-size: 14px;
}
.style7 {
font-size: 12px;
}

.menu {
font-family: Verdana, Arial, Helvetica, sans-serif; 
font-size: 11px;
font-weight: bold;
}

.menu_rodape {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 9px;
font-weight: bold;
}
.topo {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 24px;
font-weight: bold;
}
.rodape {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
font-weight: bold;
}
.corpo {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;

}

Agora está beleza, é isso aí vivendo e aprendendo...

 

Valeu pela ajuda...

Compartilhar este post


Link para o post
Compartilhar em outros sites

ok, beleza, foi só arrumar o CSS

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.