Hi, I'm using some code that I found to adapt the module headers on my home page. However, I need to change it so that instead of "appending" text to the end of the existing text it will replace the text or add new text before the existing text (for example for "Blog Posts" instead of doing "Blog Posts Featured" it will say "Featured Blog Posts" or some other text altogether.
Here's the code I've been using:
& gt script language="javascript">
x$(document).ready(function() {
x$(".xg_module_head").find("h2:contains('Blog Posts')").append(" Featured");
});
& gt/script>