| This topic was locked 6th Mar 08 at 5:24pm by Michael |
goldigga Guest | | [F] is it possible (4th Mar 08 at 1:17pm UTC) | | | Is it possible to create a dividing line to the left of Topics - Posts to separate it from the board names and descriptions on the main page? | |
|
Graham Support Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 40 Joined:
Additional Groups: Support Team
  
pmwww | | Re: is it possible (4th Mar 08 at 1:33pm UTC) | | | Do you mean having it in a separate table to the board description? | |
|
goldigga Guest | | Re: is it possible (4th Mar 08 at 1:41pm UTC) | | Do you mean having it in a separate table to the board description?
yes
also is there anyway you can add extra smilies onto forum?
sorry to be a pain | |
|
Graham Support Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 40 Joined:
Additional Groups: Support Team
  
pmwww | | Re: is it possible (4th Mar 08 at 1:56pm UTC) | | This would probably be better off in the code support section
*moves it* | |
|
goldigga Guest | | Re: is it possible (4th Mar 08 at 1:59pm UTC) | | This would probably be better off in the code support section *moves it*
oops sorry | |
|
Graham Support Administrator
    
![[Avatar]](http://uploads.virtualforums.co.uk/forums/pokemon/vforums-qr1.png) Posts: 1,642 Status: Offline Gender: Male Location: Sussex, UK Age: 40 Joined:
Additional Groups: Support Team
  
pmwww | | Re: is it possible (4th Mar 08 at 2:03pm UTC) | | No worries I believe that both of what you want are possible, but coding isn't my strong point so i'll leave it up to the professionals | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | | Re: is it possible (4th Mar 08 at 6:24pm UTC) | | Could you (mainly for my own sake) please create another request for 'extra' smilies?
And, for the first one do you mean to show the stats in their own cell? | |
|
goldigga Guest | | Re: is it possible (4th Mar 08 at 6:39pm UTC) | | Could you (mainly for my own sake) please create another request for 'extra' smilies? And, for the first one do you mean to show the stats in their own cell?
we would like it so that the section where for example" 7 Topics - 7 Posts" is in its own column.........hope you understand what i mean | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | | Re: is it possible (4th Mar 08 at 7:32pm UTC) | | Sure I do!
I'll go about that sometime soon, got to pop-out and fix a computer shortly. | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | | Re: is it possible (4th Mar 08 at 10:40pm UTC) | | First one try this:
<style> .boardtotals{ display: none; } </style> <script> /*Board Mod Created By Wrighty*/
for(i=0; i<get('td','tag').length; i++){ if(get('td','tag')[i].innerHTML.match(/New Posts/) && get('td','tag')[i].className== "window1"){ var a = get('td','tag')[i].parentNode.insertCell(2); with(a){ className = 'window1'; width= '8%px'; align= 'center'; innerHTML = (get('td','tag')[i+1].innerHTML.match(/\s(\d+)\sPosts/))? RegExp.$1 : '0'; innerHTML += ' Posts<br>' innerHTML += (get('td','tag')[i+1].innerHTML.match(/(\d+)\sTopics\s/))? RegExp.$1 : '0'; innerHTML += ' Topics' } } if(get('td','tag')[i].innerHTML.match(/\/category\//) && get('td','tag')[i].colSpan == '3'){ get('td','tag')[i].colSpan = '4'; } } </script>
Global Footer | |
|
goldigga Guest | | Re: is it possible (5th Mar 08 at 7:30am UTC) | | First one try this:
<style> .boardtotals{ display: none; } </style> <script> /*Board Mod Created By Wrighty*/
for(i=0; i<get('td','tag').length; i++){ if(get('td','tag')[i].innerHTML.match(/New Posts/) && get('td','tag')[i].className== "window1"){ var a = get('td','tag')[i].parentNode.insertCell(2); with(a){ className = 'window1'; width= '8%px'; align= 'center'; innerHTML = (get('td','tag')[i+1].innerHTML.match(/\s(\d+)\sPosts/))? RegExp.$1 : '0'; innerHTML += ' Posts<br>' innerHTML += (get('td','tag')[i+1].innerHTML.match(/(\d+)\sTopics\s/))? RegExp.$1 : '0'; innerHTML += ' Topics' } } if(get('td','tag')[i].innerHTML.match(/\/category\//) && get('td','tag')[i].colSpan == '3'){ get('td','tag')[i].colSpan = '4'; } } </script>
Global Footer
thanks this code is on and has made another column, but where Board Name and and Last Post is we have a section that had gone into a blue box (its the width of the last column where the last post shows) this is hard to explain without seeing it
http://benalmadena.vforums.co.uk/ | |
|
Michael Moderator
    
![[Avatar]](http://av.wservices.co.uk/av.png) Recoding the future Posts: 4,043 Status: Offline Gender: Male Location: UK Joined:
Additional Groups: Coding Team
  
pmvForum | | Re: is it possible (5th Mar 08 at 7:47am UTC) | | | Can you please make it so that I don't have to register to view your forum? | |
|
goldigga Guest | | Re: is it possible (5th Mar 08 at 8:15am UTC) | | Can you please make it so that I don't have to register to view your forum?
if i could find how to do i would
| |
|
goldigga Guest | | Re: is it possible (5th Mar 08 at 8:24am UTC) | | done it eventually | |
|
Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | | Re: is it possible (5th Mar 08 at 4:20pm UTC) | |  Code: - <style>
- .boardtotals{
- display: none;
- }
- </style>
- <script>
- /*Board Mod
- Created By Wrighty*/
-
- for(i=0; i<get('td','tag').length; i++){
- if(get('td','tag')[i].innerHTML.match(/New Posts/) && get('td','tag')[i].className== "window1"){
- var a = get('td','tag')[i].parentNode.insertCell(2);
- with(a){
- className = 'window1';
- width= '8%px';
- align= 'center';
- innerHTML = (get('td','tag')[i+1].innerHTML.match(/\s(\d+)\sPosts/))? RegExp.$1 : '0';
- innerHTML += ' Posts<br>'
- innerHTML += (get('td','tag')[i+1].innerHTML.match(/(\d+)\sTopics\s/))? RegExp.$1 : '0';
- innerHTML += ' Topics'
- }
- }
- if(get('td','tag')[i].innerHTML.match(/\/category\//) && get('td','tag')[i].colSpan == '3'){
- get('td','tag')[i].colSpan = '4';
- get('td','tag')[i-1].colSpan = '4';
- }
- }
- </script>
| |
rroll.to— Shorten a link, rickroll your friends. |
|