Webengine transparent background

Results 1 to 4 of 4
  1. #1
    Account Upgraded | Title Enabled! samsunggon is offline
    MemberRank
    Mar 2010 Join Date
    Lorencia BarLocation
    517Posts

    Webengine transparent background

    help how can i make this TRANSPARENT background
    http://i68.tinypic.com/200fx48.png


    sorry im just no idea how to remove or make that transparent
    Thanks


  2. #2

    Re: Webengine transparent background

    Code:
    <?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,7 = 30% transparent
    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
    Last edited by KarLi; 21-01-16 at 04:06 PM.

  3. #3
    HITMAN CAPITOL is offline
    MemberRank
    Apr 2013 Join Date
    PhilippinesLocation
    717Posts

    Re: Webengine transparent background

    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"

  4. #4
    Account Upgraded | Title Enabled! samsunggon is offline
    MemberRank
    Mar 2010 Join Date
    Lorencia BarLocation
    517Posts

    Re: Webengine transparent background

    ok thanks @KarLi & @CAPITOL :D

    /Closed



Advertisement