I've already had a couple of fellow NCs ask "How do I create a footer, like the new footer on
Creators Network?" If this tutorial has already been created, I couldn't find it.
Your content and formatting is up to you, of course. But, I can show you how to add your footer content to your Ning Network. This is very similar to the How-To on Creators Network - "
Inserting JavaScript ads or content in the header of your networks". So, if you want to learn
how-to add/insert content or ads in your header, see Derrick's How-To, above.
How To Add Content to Your Footer:
Summary - Prepare your content and add to an external HTML. Call into your Network Footer via Analytics Box, using an iframe and JavaScript.
- Create your HTML.
- Upload to a server or to Ning via Blog (be sure to click on document upload icon)
- How to center content in your HTML - add a DIV with align=center, around your footer content, within your external HTML. Example start tag: <div align=center>
- Background color - the best way to set iframe background color: add the body tag to your external HTML, like in following example. You can add these tags to your Analytics box code. But, I've found that it's better to add to your HTML file. Example start tag: <body bgcolor=white> Note: Don't forget to end both the body and DIV tags in your external HTML file.
- Know your HTML path.
- Replace the src="your.html" with your HTML file path, in the example code below.
- Adjust the iframe width and height to fit your HTML content area.
- Add the example code below, to your Analytics box - Manage/Analytics.
<script type="text/javascript"> x$("#xg_foot").after("<div id='custom_ads'></div>"); var ad_html = '<iframe frameborder="0" scrolling="no" allowtransparency="true" marginheight="0" marginwidth="0" src="your.html" width="955px" height="100px"></iframe>'; x$("#custom_ads").html(ad_html);
</script>