Move modules around on your KickApps powered site


/ Published in: JavaScript
Save to your folder(s)

In this example below I am moving the "recent blogs" module in "My Home" to the very top. I have placed this code in the footer of my Affiliate Center wrapped in script tags.

For maximum efficiency:
1) Use the inspect tool in Firebug to find the main container you want to move (the element that's wrapping around the content you want to move).

2) Find the ID of the element you want to insert into, after, or before.

3) Write your code like below. Instead of using .insertBefore, you can use any of the options on this page under "insert outside" and "insert inside": http://docs.jquery.com/Manipulation#bodyContent

4) Don't forget to wrap your code around an if statement to target the specific page(s) only so that your code doesn't run on your other KickApps pages.

--
For more tips and tricks checkout the <a href="http://www.kickdeveloper.com/resources">KickApps resources page</a>.

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.