Misc Customizations

From eStyleCentral Help
(Difference between revisions)
Jump to: navigation, search
(New page: ==To edit the separators in the menu bar:== To replace to the "|" character in the menu bar with your own custom image you can use the following code. Paste this code into your General Se...)
(To edit the separators in the menu bar:)
Line 3: Line 3:
To replace to the "|" character in the menu bar with your own custom image you can use the following code. Paste this code into your General Settings -> "HTML Inserts" -> 4) http and https sections:
To replace to the "|" character in the menu bar with your own custom image you can use the following code. Paste this code into your General Settings -> "HTML Inserts" -> 4) http and https sections:
-
<source lang="html">
+
<source lang="javascript">
<script>
<script>

Revision as of 02:28, 3 December 2012

To edit the separators in the menu bar:

To replace to the "|" character in the menu bar with your own custom image you can use the following code. Paste this code into your General Settings -> "HTML Inserts" -> 4) http and https sections:

<script>
$(document).ready(function(){
   $('.head3').html(function(i,html) {
    return html.replace(/\|/g, '<img src="http://www.efcmailserver.com/wiki/images/e/e6/Separator.gif" alt="" >');
});
});
</script>

Replace

Personal tools