help how can i make this TRANSPARENT background
http://i68.tinypic.com/200fx48.png
http://i68.tinypic.com/200fx48.png
sorry im just no idea how to remove or make that transparent
Thanks
Printable View
help how can i make this TRANSPARENT background
http://i68.tinypic.com/200fx48.png
http://i68.tinypic.com/200fx48.png
sorry im just no idea how to remove or make that transparent
Thanks
0,7 = 30% transparentCode:<?php
* Create the object */
$image = new Imagick('source.png');
/* Set the opacity */
$image->setImageOpacity(0.7);
/* output the image */
header('Content-type: image/png');
echo $image;
?>
0.0 = full transparent
1.0 = Non transparent.
or easier code: (find your .jpg or .png) file in template and the code and it should be something like this:
<img src="result_files\background.png" alt="some_text" style="opacity:0.4;filter:alpha(opacity=40);"/>
u just need to use new style="opacity:0.4;filter:alpha(opacity=40);"
40 = opacity level change that as u desire.
give ur .php of template maybe if u want
Go to template folder of WebEngine and look for the CSS file "style" there you will see all backgrounds entries and just remove the background and replace it with "transparent"