johnhey 0 Denunciar post Postado Março 26, 2013 Boa tarde pessoal, estou a modificar meu site como tenho vos dito, estou a fazer em php no Dreamweaver. Fui colocar um background e fiz da seguinte forma: 1º Adicionei um novo estilo css; 2º Na opção "tipo" escolhi - TAG (redefines an HTML elemento); 3º Escolhi a opção "body" 4º Em background escolhi a imagem e pedi para não repetir. no meu principal.css foi adicionado a seguinte linha: body { background-image: url(../imagens/fundo.png); background-repeat: no-repeat; } no Dreamweaver o fundo aparece só que em meu browser não. já retirei os dois pontos no inicio do caminho da imagem só que não resultou. o que esta errado? Compartilhar este post Link para o post Compartilhar em outros sites
Ricardo Saraiva 84 Denunciar post Postado Março 27, 2013 Coloque assim: body { background-image: url("../imagens/fundo.png"); background-repeat: no-repeat; } Compartilhar este post Link para o post Compartilhar em outros sites
johnhey 0 Denunciar post Postado Março 27, 2013 infelizmente não resultou. Compartilhar este post Link para o post Compartilhar em outros sites
johnhey 0 Denunciar post Postado Abril 4, 2013 Este é o link do vídeo que segui a risca para colocar o background, só que não resulta. no Dreamweaver esta correcto, só que no meu browser não aparece. Compartilhar este post Link para o post Compartilhar em outros sites
Alaerte Gabriel 662 Denunciar post Postado Abril 10, 2013 Não coloque aspas. Deixe sem as aspas. Crie um div abaixo do BODY e dê o nome de "geralback" no css adicione: Se ainda assim não der certo, ataque o body na própria tag, seguinte: <body style="background-image: url(imagens/fundo.png); background-repeat: no-repeat;"> #geralback { background-image: url(../imagens/fundo.png); background-repeat: no-repeat; } Compartilhar este post Link para o post Compartilhar em outros sites
johnhey 0 Denunciar post Postado Abril 18, 2013 Não resultou, tive que colocar directamente no source code o código abaixo. <style type="text/css"> body { height: 1680px; width: 1050px; background-repeat: no-repeat; background-position: center top; background-image: url(imagens/fundo.png); } </style> Compartilhar este post Link para o post Compartilhar em outros sites