Is it possible to hide a part of website like DIV
or any tag with opacity
& z-index
in PHP instead of CSS
CSS Code:
#unwantedposition{
opacity:0;
z-index:9999;
position:absolute;
}
I am trying to rewrite my CSS code with PHP
PHP Code:
header("Content-type: text/css; charset: UTF-8");
$opacity = "0";
$z-index = "9999";
$position = "absolute";
How can I fix this?