Url: http://inuyashasworld.vforums.co.uk/
Browser: FF
I found an error with the PM Notification setup. For some reason it wont let me click on any of the links (Reply, View, Ignore) I think are the links. So i have to go to the userbar and click New PM to get the notification to go away.
Hi,
This is a code conflict on your forum. I've had a look through and this seems lik the most likely culprit since it refences a table by number rather than ID. And when the pop-up exists, there's an extra table at the very top of the page.
Code:
- get('table', 'tag')[1].cellSpacing = '1';
- for(b = 0; b < 4; b++)
- get('br', 'tag').style.display = "none";
- with(get('forum_border_menu_holder', 'id')){
- var x = (vf_username == 'guest'? 3 : 6);
- for(n = 0; n < x; n++){
- appendChild(get('table', 'tag')[0]);
- if(n == 2 || n == 5)
- appendChild(document.createElement('br'));
- }
- }
Lovely, I need that coding for the design of my forum in order to add the welcome table within the frame of my forum. My javascript skills are very rusty and wrighty coded it in the first place so i'm not sure how to edit it in order to fix it.
Code:
- <script type="text/javascript">
- <!--
- get('welcome_table', 'id').cellSpacing = '1';
- 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>
I've not tested it but that should work![]()
Thanks Ross, now just got to wait till I get a pm on the forum to see if it works, if not then i'll bug wrighty![]()