URL: http://www.forum.divineshadowsonline.com
Ross for some reason when i remove the head and base tags from within the Welcome Table template, it removed the welcome table area completelyeven though it was just the head and base tags that was removed.
I'm also have problems with removing the user bar completely, its creates a between the logo and the top of the forum taht shouldn't be there, and it does it when the head and base images are removed.
It looks to be a code conflict:
http://www.forum.divineshadowsonline.com/noheaders/1
Try removing any codes which modify the welcome table, particularly any which are no longer needed![]()
The only code I still have that would effect it is this:
Code:
- <script type="text/javascript">
- <!--
- get('welcome_table', 'id').cellSpacing = '0';
- for(b = 0; b < 4; b++) {
- get('br', 'tag')[b].style.display = "none";
- }
- with(get('forum_border_menu_holder', 'id')){
- var x = (vf_username == 'guest'? 3 : 6);
- var s = (get('table', 'tag')[0].className.match(/welcometable/))? 0 : 1;
- for(n = 0; n < x; n++){
- appendChild(get('table', 'tag')[s]);
- if(n == 2 || n == 5)
- appendChild(document.createElement('br'));
- }
- }
- // -->
- </script>
which is suppose to call the welcome table into my forums border frame, i think. I don't exactly remember lol.
anyways if it helps here is the welcome_table code:Code:
- <table align="center" width="{skin_width}" cellspacing="0" cellpadding="0" class="border" id="welcome_table">
- <tr>
- <td width="100%" class="welcome" align="center">
- {if:banner}<img src="{banner}" alt="{forum_name} Banner" title="{forum_name}" />{else}<h1>{forum_name}</h1>{/if}
- </td>
- </tr>
- <tr>
- <td width="100%" class="menu" id="menu_buttons">
- <div class="nav">
- <ul class="artmenu">
- <li><a href="http://www.divineshadowsonline.com/index.php"><span><span>Home</span></span></a></li><li><span class="separator"></span></li>
- <li><a href="http://www.forum.divineshadowsonline.com"><span><span>Forum</span></span></a>
- <ul>
- {if:member}
- <li><a href="/action/search"><span><span>Search</span></span></a></li><li><a href="action/view_profile"><span><span>Profile</span></span></a></li>
- {/if}
- {if:staff}
- <li><a href=/action/admin><span><span>Admin Panel</span></span></a></li><li><a href=http://www.divineshadowsonline.com/register.php><span><span>Register User</span></span></a></li><li><a href="/action/members"><span><span>Members List</span></span></a></li>
- {/if}
- {if:member}
- <li><a href="http://www.divineshadowsonline.com/logout.php"><span><span>Logout</span></span></a></li>
- {/if}
- </ul>
- </li><li><span class="separator"></span></li>
- {if:member}
- <li><a href="http://www.store.divineshadowsonline.com/index.php"><span><span>Store</span></span></a></li><li><span class="separator"></span></li>
- {/if}
- <li><a href="#"><span><span>Game Information</span></span></a>
- <ul>
- <li><a href="http://www.divineshadowsonline.com/plot.php"><span><span>Story Line</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/rules.php"><span><span>Rules</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/characterinfo.php"><span><span>Character Information</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/getting-started.php"><span><span>Getting Started</span></span></a></li>
- </ul>
- </li><li><span class="separator"></span></li>
- <li><a href="#"><span><span>Downloads</span></span></a>
- <ul>
- {if:member}
- <li><a href="http://www.divineshadowsonline.com/client.php"><span><span>Client Download</span></span></a></li>
- {/if}
- <li><a href="http://www.divineshadowsonline.com/wallpaper.php"><span><span>Wallpaper</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/multimedia.php"><span><span>Multi-Media</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/screenshots.php"><span><span>Screenshots</span></span></a></li>
- </ul>
- </li><li><span class="separator"></span></li>
- <li><a href="#"><span><span>Support</span></span></a>
- <ul>
- <li><a href="http://www.divineshadowsonline.com/contact.php"><span><span>Contact</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/faq.php"><span><span>FAQ</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/privacy-policy.php"><span><span>Privacy Policy</span></span></a></li>
- <li><a href="http://www.divineshadowsonline.com/tou.php"><span><span>Terms Of Use</span></span></a></li>
- </ul>
- </li>
- </ul>
- <div class="l">
- </div>
- <div class="r">
- <div>
- </div>
- </div>
- </div>
- </td>
- </tr>
- </table>
- <br /><br />
I just don't get why it doesn't break will the head and base images are removed. Thats why i thought it was a bug![]()
Edit: It was the whole border I had around the forum![]()
The code was expecting the head/base images to exist. It was getting confused when they were no longer there. But I've replied to your other code support topic![]()