Current File : //root/panel/modules/theme_manager/module.zpm
<div class="zmodule_content panel" id="zmodule_header_<@ ModuleName @>">
    <div class="panel-heading">
        <img src="<@ ModuleIcon @>" width="35" height="35" border="0" alt="<@ ModuleName @>">

        <div class="zmodule_title">
            <@ ModuleName @>
        </div>

        <div class="zmodule_desc" id="zmodule_desc_<@ ModuleName @>"><p><: As a reseller you can configure theme settings for your clients. If the theme you select has multiple CSS versions you will be prompted for which theme 'version' you would like to use after you 'save' the changes. :></p></div>

    </div>

<style>
.helpicon {
display: block;
float: right;
border: 1px solid #ccc;
background-color: #f3f3f3;
padding: 5px 10px;
font-size: 12px;
margin-top:-121px;
margin-right:5px;
-webkit-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: -8px 7px 5px 0px rgba(204,204,204,1);
-webkit-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
-moz-box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
box-shadow: 8px 7px 5px 0px rgba(204,204,204,1);
}

</style>
<div class="helpicon">
<a href="<@ helpicon @>" target="_blank"><img src="etc/styles/CstyleX-master/images/help.png" style="float:left;" ><span style="float:left;margin-top:8px;font-weight:bold;font-size:12px;" >Video Tutorial</span></a>
</div>

    <@ Result @>


    <div class="zform_wrapper">
        <h2><: Select a theme :></h2>
        <form action="./?module=theme_manager&action=SaveTheme" method="post">
            <table class="table table-striped">
                <tr>
                    <th><: Theme name :>:</th>
                    <td><select name = "inTheme" id="inTheme">
                            <@ SelectThemeMenu @>
                        </select></td>
                </tr>
                <tr>
                    <th colspan="2" align="right">
                        <button class="button-loader btn btn-primary" type="submit" ><: Save :></button>
                    </th>
                </tr>
            </table>
            <@ CSFR_Tag @>
        </form>
    </div>

    <% if IsSelectCSS %>
    <div class="zform_wrapper">
        <h2><: Theme variation :></h2>
        <form action="./?module=theme_manager&action=SaveCSS" method="post">
            <table class="table table-striped">
                <tr>
                    <th><: Theme variation :>:</th>
                    <td><select name = "inCSS" id="inCSS">
                            <@ SelectCSSMenu @>
                        </select></td>
                </tr>
                <tr>
                    <th colspan="2" align="right">
                        <button class="button-loader btn btn-primary" type="submit" ><: Update :></button>
                    </th>
                </tr>
            </table>
            <@ CSFR_Tag @>
        </form>
    </div>
    <% endif %>
</div>