Can someone please make me a code for a board mod to make it look like a vbulletin forum. PLEASE!!and if there are different styles the id like it to look like this at least to the best as possible.
http://bleachpower.com/forums/
bump
bump
Your last post was hardly 4 hours ago; why the need for the bump? There wasn't even anything else posted in this board since.![]()
Someone will get to your post when they have the time. Unfortunately I can't right now as it is midnight and I have school in a few hours.
in it was really 1 day and a little under 4 hours under i posted, the first one was on the 11th the last one was yesterday.. well either way ok i'll wait..
in it was really 1 day and a little under 4 hours under i posted, the first one was on the 11th the last one was yesterday.. well either way ok i'll wait..
Ahh, you'll have to forgive me, I can be a bit blind sometimes.![]()
I'll see if I can get this for you by tomorrow.![]()
ah ok cool thank you every much, and as for the blind this np, we all can be blind at times.
Today came and went way too fast, and tomorrow I've got prior engagements to attend to. So, unless if Wrighty or someone else takes this on, I won't be able to get it for you until Saturday.
Sorry.![]()
well thats ok, i'll be busy till then as well.
bump
bump
bump
So you want:
On/Off Icon Name & Description & Mods & Sub-boards Last Post Threads Posts
Just like that?![]()
yes and then i'd like the moderator of the board to remain under the description area like it is normally plz.
try this....![]()
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"){
- get('td','tag')[i+1].width = '55%';
- if(get('td','tag')[i+1].getElementsByTagName('span')[3] && get('td','tag')[i+1].getElementsByTagName('span')[4] && get('td','tag')[i+1].getElementsByTagName('span')[4].innerHTML.match(/Led By:/) && get('td','tag')[i+1].getElementsByTagName('span')[3].innerHTML.match(/Sub-Boards:/)){
- get('td','tag')[i+1].getElementsByTagName('span')[3].innerHTML += ' | ' + get('td','tag')[i+1].getElementsByTagName('span')[4].innerHTML
- get('td','tag')[i+1].getElementsByTagName('span')[4].style.display='none';
- }
- var a = get('td','tag')[i].parentNode.insertCell(3);
- with(a){
- className = 'window1';
- width= '50px';
- align= 'center';
- innerHTML = (get('td','tag')[i+1].innerHTML.match(/\s(\d+)\sPosts/))? RegExp.$1 : '0';
- }
- var b = get('td','tag')[i].parentNode.insertCell(3);
- with(b){
- className = 'window1';
- width= '50px';
- align= 'center';
- innerHTML = (get('td','tag')[i+1].innerHTML.match(/(\d+)\sTopics\s/))? RegExp.$1 : '0';
- }
- }
- if(get('td','tag')[i].innerHTML.match(/\/category\//) && get('td','tag')[i].colSpan == '3'){
- get('td','tag')[i].colSpan = '5';
- }
- }
- </script>
hey thanks it looks great but, could you also add in the areas above it where it say what each area is?
oh in the blue bar? O.o
kind of, even if youi have to create a bar under it and have it dispaly the text that would be cool, and if you can can you have it so i can add my own images that say Description, Posts, Thread, Topics, i think i didn't miss any.
What do you mean 'your own imaes' where abouts?
Should I just add the text after the number?![]()
lol oops i meant images. and ya that would be fine. if i wanted i could just go through and change the text to images myself
try this....![]()
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"){
- get('td','tag')[i+1].width = '55%';
- if(get('td','tag')[i+1].getElementsByTagName('span')[3] && get('td','tag')[i+1].getElementsByTagName('span')[4] && get('td','tag')[i+1].getElementsByTagName('span')[4].innerHTML.match(/Led By:/) && get('td','tag')[i+1].getElementsByTagName('span')[3].innerHTML.match(/Sub-Boards:/)){
- get('td','tag')[i+1].getElementsByTagName('span')[3].innerHTML += ' | ' + get('td','tag')[i+1].getElementsByTagName('span')[4].innerHTML
- get('td','tag')[i+1].getElementsByTagName('span')[4].style.display='none';
- }
- var a = get('td','tag')[i].parentNode.insertCell(3);
- with(a){
- className = 'window1';
- width= '50px';
- align= 'center';
- innerHTML = (get('td','tag')[i+1].innerHTML.match(/\s(\d+)\sPosts/))? RegExp.$1 : '0';
- innerHTML += '<br />Posts'
- }
- var b = get('td','tag')[i].parentNode.insertCell(3);
- with(b){
- className = 'window1';
- width= '50px';
- align= 'center';
- innerHTML = (get('td','tag')[i+1].innerHTML.match(/(\d+)\sTopics\s/))? RegExp.$1 : '0';
- innerHTML += '<br />Topics'
- }
- }
- if(get('td','tag')[i].innerHTML.match(/\/category\//) && get('td','tag')[i].colSpan == '3'){
- get('td','tag')[i].colSpan = '5';
- }
- }
- </script>
ok that works, thank you![]()