I have a jpg 206x46 with which id like to replace the current download button.
thanks.
XFileSharing Pro - how to change the download button
so this
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_download_file>">
wuold become:
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="image" src="html/images/downloadblue.png "<TMPL_VAR lang_download_file>">
right??
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_download_file>">
wuold become:
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="image" src="html/images/downloadblue.png "<TMPL_VAR lang_download_file>">
right??
The following code will do it:
Note that <TMPL_VAR lang_create_link> and <TMPL_VAR lang_download_file> can be safely removed since that's the text which will not be shown when using an image.
Code: Select all
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="image" id="btn_download" src="/images/downloadblue.png">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="image" id="btn_download" src="/images/downloadblue.png">
</TMPL_IF>
-
- Posts: 2
- Joined: Jul 16, 2012 2:36 am
How do create a separate button for direct download and one
How do create a separate button for direct download and one for slow download?
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>" class="premium">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_download_file>" class="slow">
</TMPL_IF>
<TMPL_IF direct_links>
<input type="hidden" name="down_direct" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_create_link>" class="premium">
<TMPL_ELSE>
<input type="hidden" name="down_script" value="1">
<input type="submit" id="btn_download" value="<TMPL_VAR lang_download_file>" class="slow">
</TMPL_IF>