HTML/CSS Rendre un tableau invisible
dabigben
Messages postés
1913
Date d'inscription
Statut
Membre
Dernière intervention
-
dabigben Messages postés 1913 Date d'inscription Statut Membre Dernière intervention -
dabigben Messages postés 1913 Date d'inscription Statut Membre Dernière intervention -
Salutations !
J'aimerais savoir quel code pourrais rendre un tableau invisible car sur mon myspace j'ai un gros tableau en arrière plan et je ne peux que toucher le code CSS. Existe-t'il une propriété de transparence ?
Merci !
J'aimerais savoir quel code pourrais rendre un tableau invisible car sur mon myspace j'ai un gros tableau en arrière plan et je ne peux que toucher le code CSS. Existe-t'il une propriété de transparence ?
Merci !
A voir également:
- HTML/CSS Rendre un tableau invisible
- Tableau word - Guide
- Trier un tableau excel - Guide
- Tableau ascii - Guide
- Clé usb invisible - Guide
- Imprimer un tableau excel - Guide
9 réponses
En gros tu voudrai supprimer le fond de l'image pour faire apparaitre seulement les Enceintes ?
Si c'est le cas, je te le fait ce week end et tu retrouvera la totalité de ton image de fond (la forêt)
Ouai j'ai paypal mais le café paye le pour toi xD
Si c'est le cas, je te le fait ce week end et tu retrouvera la totalité de ton image de fond (la forêt)
Ouai j'ai paypal mais le café paye le pour toi xD
Si tu ne peux ni toucher le CSS ni le HTML c'est foutu. Envoie le lien de ta page s'il te plait.
Merci d'avance Sincèrement Desperadisse
Merci d'avance Sincèrement Desperadisse
Bonjour,
Si tu as bien formule ta question, tu as donc acces au fichier CSS.
Dans ce cas, il te suffit simplement d'ajouter a ton element table (dans CSS):
visibility: hidden;
Bonne journee.
Si tu as bien formule ta question, tu as donc acces au fichier CSS.
Dans ce cas, il te suffit simplement d'ajouter a ton element table (dans CSS):
visibility: hidden;
Bonne journee.
Oui ou sur "table" dans ton Css tu peux également mettre un "display:none;" ce qui me semble plus efficace.
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
Donc apparemment display:none; supprime totalement le tableau tandis que visibility:hidden; fais disparaitre le contenu
Malheureusement cela supprime d'autres tableau, je ne comprend pas comment faire...
https://myspace.com/wavecorp
Il s'agit du tableau avec un fond de carré et de haut-parleurs. Je lui ai mis ce fond car je ne savais rien faire d'autre, voila le code css (j'ai mis des repere dans la partie interessante) :
<center><div class="topbanner">
<img border="0" align="center" src="http://skyzotronic.free.fr/img/msban3.png" />
</div></center><br />
<style>
.topbanner { position: absolute; top: 0; left: 0;
margin-top : 10px ;
margin-left: auto;
margin-right : auto;
margin-bottom : auto ;
width: 100%;
height: 30px; }
</style>
<style>
body {
background-color:white;
background-image : url('http://skyzotronic.free.fr/img/forest.jpg');
background-repeat : no-repeat;
}
body, body.bodycontent{
background-position:center center;
background-attachment:fixed;
margin-top: 220px;
scrollbar-face-color:rgb(0,204,204);
scrollbar-base-color:rgb(0,204,204);
scrollbar-3dlight-color:rgb(0,204,155);
scrollbar-shadow-color:rgb(0,204,155);
scrollbar-darkshadow-color:rgb(0,204,155);
scrollbar-highlight-color:rgb(0,204,155);
scrollbar-track-color:rgb(152,133,228);
scrollbar-arrow-color:rgb(136,225,71);
margin-left : auto ;
margin-right : auto ;
}
body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{
color:rgb(166,252,209);
font-size:9pt;
font-weight:bold;
font-style:italic;
text-decoration:none;
text-transform:none;
font-family:Georgia,sans-serif;
}
.orangetext15, strong, .lightbluetext8, .whitetext12, .nametext, .btext, .redtext, .redbtext{
color:rgb(252,227,227);
font-size:0pt;
font-weight:bold;
font-style:normal;
text-decoration:underline ;
text-transform:capitalize;
font-family:monospace,sans-serif;
}
a, a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{
color:F9991C;
font-size:12pt;
font-weight:normal;
font-style:italic;
text-decoration:underline ;
text-transform:none;
font-family:comic sans ms,sans-serif;
}
a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{
color:F3C78C;
font-size:12pt;
font-weight:normal;
font-style:normal;
text-decoration:underline ;
text-transform:none;
font-family:Impact,sans-serif;
}
table table table table, table table table td{
background-image:none;
background-color:black;
}
---------------> c'est ici
table, tr, td{
border-style:none;
background-color:white;
background:url('http://skyzotronic.free.fr/img/hp-1.jpg') center center ;
background-attachment:fixed;
background-repeat : no-repeat ;
}
<-----------------------------------------------------------
table table table, div table table{
border-color:rgb(255,255,255);
border-style:groove;
border-width:2px;
background-color:black;
}
table table table table, div table table table{
border-style:none;
background-color:black;
}
</style>
-----------------------------------------------------------------Je connais un peu le css mais je ne comprends pas trop le fonctionnement de myspace, à savoir : comment sait-il de quel tableau on parle ?
Malheureusement cela supprime d'autres tableau, je ne comprend pas comment faire...
https://myspace.com/wavecorp
Il s'agit du tableau avec un fond de carré et de haut-parleurs. Je lui ai mis ce fond car je ne savais rien faire d'autre, voila le code css (j'ai mis des repere dans la partie interessante) :
<center><div class="topbanner">
<img border="0" align="center" src="http://skyzotronic.free.fr/img/msban3.png" />
</div></center><br />
<style>
.topbanner { position: absolute; top: 0; left: 0;
margin-top : 10px ;
margin-left: auto;
margin-right : auto;
margin-bottom : auto ;
width: 100%;
height: 30px; }
</style>
<style>
body {
background-color:white;
background-image : url('http://skyzotronic.free.fr/img/forest.jpg');
background-repeat : no-repeat;
}
body, body.bodycontent{
background-position:center center;
background-attachment:fixed;
margin-top: 220px;
scrollbar-face-color:rgb(0,204,204);
scrollbar-base-color:rgb(0,204,204);
scrollbar-3dlight-color:rgb(0,204,155);
scrollbar-shadow-color:rgb(0,204,155);
scrollbar-darkshadow-color:rgb(0,204,155);
scrollbar-highlight-color:rgb(0,204,155);
scrollbar-track-color:rgb(152,133,228);
scrollbar-arrow-color:rgb(136,225,71);
margin-left : auto ;
margin-right : auto ;
}
body, div, p, strong, td, .text, .blacktext10, .blacktext12, a.searchlinkSmall, a.searchlinkSmall:link, a.searchlinkSmall:visited{
color:rgb(166,252,209);
font-size:9pt;
font-weight:bold;
font-style:italic;
text-decoration:none;
text-transform:none;
font-family:Georgia,sans-serif;
}
.orangetext15, strong, .lightbluetext8, .whitetext12, .nametext, .btext, .redtext, .redbtext{
color:rgb(252,227,227);
font-size:0pt;
font-weight:bold;
font-style:normal;
text-decoration:underline ;
text-transform:capitalize;
font-family:monospace,sans-serif;
}
a, a font, a:link, a:visited, a.navbar, a.navbar:link, a.navbar:visited, a.man, a.man:link, a.man:visited, a.man font, a.redlink, a.redlink:visited{
color:F9991C;
font-size:12pt;
font-weight:normal;
font-style:italic;
text-decoration:underline ;
text-transform:none;
font-family:comic sans ms,sans-serif;
}
a:hover, a:hover font, a:active, a.navbar:hover, a.navbar:active, a.man:hover, a.man:active, a.man:hover font, a.searchlinkSmall:hover, a.searchlinkSmall:active, a.redlink:hover, a.redlink:hover{
color:F3C78C;
font-size:12pt;
font-weight:normal;
font-style:normal;
text-decoration:underline ;
text-transform:none;
font-family:Impact,sans-serif;
}
table table table table, table table table td{
background-image:none;
background-color:black;
}
---------------> c'est ici
table, tr, td{
border-style:none;
background-color:white;
background:url('http://skyzotronic.free.fr/img/hp-1.jpg') center center ;
background-attachment:fixed;
background-repeat : no-repeat ;
}
<-----------------------------------------------------------
table table table, div table table{
border-color:rgb(255,255,255);
border-style:groove;
border-width:2px;
background-color:black;
}
table table table table, div table table table{
border-style:none;
background-color:black;
}
</style>
-----------------------------------------------------------------Je connais un peu le css mais je ne comprends pas trop le fonctionnement de myspace, à savoir : comment sait-il de quel tableau on parle ?
Analyse tout le code source et rajoute les balise qu'il te faut pour rendre invisible le tableau sans faire disparaitre les autres. Envoie moi le liens de ta page et je te dirai précisement ou ^^
C'est sur cette page :
https://myspace.com/wavecorp
Mais je me suis déja rendu fou a essayer d'intervenir sur un tableau sans que ça change les autres, en vain !
Pour t'y retrouver, voila l'url de l'image de fond du-dit tableau
http://skyzotronic.free.fr/img/hp-1.jpg
Si tu trouve jte paie un café ! T'as paypal ? ---->lol
https://myspace.com/wavecorp
Mais je me suis déja rendu fou a essayer d'intervenir sur un tableau sans que ça change les autres, en vain !
Pour t'y retrouver, voila l'url de l'image de fond du-dit tableau
http://skyzotronic.free.fr/img/hp-1.jpg
Si tu trouve jte paie un café ! T'as paypal ? ---->lol
non non, L'image avec les carrés et les Haut-parleurs c'est la même image en fait. C'est une image qui est en background dans un tableau. Je m'en fiche de cette image je l'ai mise juste parce que sinon il y avait un tableau vide quoi.
Donc comme tu dis j'aimerais qu'il n'y ai que la foret qui apparaisse...
Mais bon franchement je préfèrerais que tu me dise comment faire si tu sais car, même si tu es plein de bonnes intentions, je ne peux pas te filer mais identifiants !!
Donc comme tu dis j'aimerais qu'il n'y ai que la foret qui apparaisse...
Mais bon franchement je préfèrerais que tu me dise comment faire si tu sais car, même si tu es plein de bonnes intentions, je ne peux pas te filer mais identifiants !!