How To Create A Forum to Blogger For Free
How To Create A Forum to Blogger For Free
Blogger Tricks
Blogger Tricks
Login to blogger and create a new static page on your blog, for a forum, for example see below -
http://yourblog.blogspot/p/forum.html
2. Now create a new forum for free at Nabble and copy the HTML code and paste it in a notepad.3. Now Go to Blogger Dashboard >> Design >> Edit HTML and click Expand Widget Tempaltes.
4. Find (CTRL+F) the following code, in your template HTML code -
<div id=’content-wrapper’>
OR
<div class=’columns fauxcolumns’>
5. Now immediately after one of the above code, copy and paste the following code -
<b:if cond=’data:blog.url == "http://yourblog.blogspot/p/forum.html"’>
PASTE_CODE_FROM_NABBLE_HERE
</b:if>
6. Now replace PASTE_CODE_FROM_NABBLE_HERE with code you copied from Nabble (saved in notepad)
7. Save your template and find the following -
</head>
8. Immediately after above code, paste the following code:
<b:if cond=’data:blog.url == "http://yourblog.blogspot/p/forum.html"’>
<style type=’text/css’>
#content-wrapper {
display:none !important;
}
.columns, .fauxcolumns {
display:none !important;
}
</style>
</b:if>
9. Don’t forget to change http://yourblog.blogspot/p/forum.html to your blog forum address in all above codes.
0 comments:
Post a Comment