Test
.post {
width: 100% !important;
}
.post-footer {
display: none !important;
}
.post-header-line-1 {
display: none !important;
}
.gapad2 {
display: none !important;
}
#outer-wrapper1 {
width: 100% !important;
}
#content-wrapper1 {
width: 100%...
Wednesday, August 26, 2020
Hide an Element - display:none or visibility:hidden? (testing)
Hide an Element - display:none or visibility:hidden?
display:none
function demoDisplay() {
document.getElementById("myP1").style.display = "none";
}
function demoVisibility() {
document.getElementById("myP2").style.visibility = "hidden";
}
Remove
visibility:hidden
...