Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@yhira
Created November 23, 2018 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yhira/bc4084b3abb8fbe892ba0792f3079039 to your computer and use it in GitHub Desktop.
Save yhira/bc4084b3abb8fbe892ba0792f3079039 to your computer and use it in GitHub Desktop.
Cocoonのサイトタイトルを改行するJavaScript(jQuery)
(function($){
var siteTitle = $('#header .site-name-text').text();
siteTitle = siteTitle.replace("Cocoonデモサイト", "Cocoon<br>デモサイト");
$('#header .site-name-text').html(siteTitle);
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment