User talk:Admin
From Virtualsoil
Line 7: | Line 7: | ||
The wiki will output a <link> which references the traditional /favicon.ico, at the root URL path of your site. (Some browsers will look there even without the <link>, others require it.) | The wiki will output a <link> which references the traditional /favicon.ico, at the root URL path of your site. (Some browsers will look there even without the <link>, others require it.) | ||
- | <plain_html><b>test</b></plain_html> | + | <plain_html><b>test</b> |
+ | <fieldset> | ||
+ | <legend>" . wfMsgHtml('upload') . "</legend> | ||
+ | <form enctype='multipart/form-data' method='post' action=\\"$action\\"> | ||
+ | <input type='hidden' name='action' value='submit' /> | ||
+ | <input type='hidden' name='source' value='upload' /> | ||
+ | <input type='hidden' name='MAX_FILE_SIZE' value='2000000' /> | ||
+ | <input type='file' name='xmlimport' value='' size='30' /> | ||
+ | <input type='submit' value='" . wfMsgHtml( "uploadbtn" ) . "'/> | ||
+ | </form> | ||
+ | </fieldset> | ||
+ | |||
+ | |||
+ | </plain_html> | ||
[[testing]] | [[testing]] |
Revision as of 18:40, 26 February 2006
VirtualSoil.com |
---|
Fan Fiction - Other Fiction - Non Fiction - Resources - Forum - About - Encyclopedia |
How do I change the icon (favicon) in browser's address-line?
If you want to another favicon. You can change it in /includes/Skin.php file. Change the line from 'href' => '/favicon.ico' to 'href' => '/path/to/your/favicon.ico'.
The wiki will output a <link> which references the traditional /favicon.ico, at the root URL path of your site. (Some browsers will look there even without the <link>, others require it.)
<plain_html>test <fieldset> <legend>" . wfMsgHtml('upload') . "</legend> <form enctype='multipart/form-data' method='post' action=\\"$action\\"> <input type='hidden' name='action' value='submit' /> <input type='hidden' name='source' value='upload' /> <input type='hidden' name='MAX_FILE_SIZE' value='2000000' /> <input type='file' name='xmlimport' value= size='30' /> <input type='submit' value='" . wfMsgHtml( "uploadbtn" ) . "'/> </form> </fieldset>
</plain_html>