css untuk menyembunyikan sesuatu

ruang posting

<style type='text/css'>
.thumbnail, TAMBAH KODE WIDGET,{display:none}
</style>

yang di bawah sumbernya dari ;
https://www.arlinacode.com/2014/12/cara-menyembunyikan-teks-dengan-css.html
1

.hide-text {
overflow: hidden;
text-indent: 100%;
white-space: nowrap;
}

2

.hide-text{
position: absolute;
top: -9999px;
left: -9999px;
}

3

.hide-text {
text-indent: -9999em;
outline: 0;
}


.hide-text {
height: 0;
overflow: hidden;
position: absolute;
}


.hide-text {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
width: 1px;
overflow: hidden;
}

pada tombol

.submitbutton {
display:block;
width:100px; height:25px;
background-image:url(image.jpg); background-repeat:no-repeat;
text-indent:-999px;
font-size:0px; line-height:0;
}

mengganti header dengan gambar

h1 {
text-indent:-9999px;
margin:0 auto;
width:400px;
height:100px;
background:transparent url("images/logo.jpg") no-repeat scroll;
}

- ALUMNI SMP 30 - SMK LANIANG JURUSAN PERAWAT