Visualizzazione dei risultati da 1 a 2 su 2
  1. #1

    Due immagini di sfondo con i CSS

    html, body{
    margin:0;
    padding:0;}

    html {
    background-attachment: fixed;
    background-image: url(../pixgrafica/barrasinistra.png);
    background-repeat: repeat-y;
    background-position: 0px 0px;
    background-color: #EFE6D1;}
    body {
    background-image: url(../pixgrafica/background.jpg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-attachment: fixed;
    height: 100%;
    width: 100%;
    z-index:1;
    }


    Questo è il css in cui volevo far vedere una barra a sinistra e un logo in basso a destra.
    il logo è un'immagine ripetuta mentre il logo è fisso. Risulta bellissimo in IE ma con Opera e Mozzilla non si vede il logo. Come posso fare per far si che si veda in tutti i browers. Carletto

  2. #2
    Utente di HTML.it
    Registrato dal
    Sep 2001
    Messaggi
    21,188
    Prova a mettere nel body:
    background-color: transparent;
    ....

    forse no.
    Forse devi usare:
    html, body {
    il CSS che hai usato nel tuo html
    }
    div#tutto {
    il CSS che hai messo nel body
    (eventualmente con il bgcolor trasparente)
    }

    E poi inserire tutta la pagina dentro il <div id="tutto">
    Nuova politica di maggiore severita` sui titoli delle discussioni: (ri)leggete il regolamento
    No domande tecniche in messaggi privati

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.