Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Add Reply
Finding Codes; I need help finding some codes
Topic Started: Jul 10 2009, 12:57 AM (872 Views)
abro
Member
 *  
BOARD URL: http://z3.invisionfree.com/testboardmwf/index.php

I decided to put a plain white for the row4's and row2's. Some no-no's that I can see are the annoying texts and annoying links. I've searched the code index and couldn't find any codes in regard to:

  • Removing the "Welcome Back" text.
  • Removing this area of text.
  • Completely removing darkrow2 including it's border, color and the space there.


    I also need a code to make the forums, maintitles and titlemediums move to the left, same with the info center. Not too much to the left that it's touching the very side of the screen but more so that there's a slight space left between that and the left of the screen. I actually need the titlemedium completely, space, border, background color and everything. To show the topics and what not, I need something like the one this forum has as in the three one viewer, something topics and something posts... I don't know the code obviously so I'll need help with that.


    In regards with some color modifications needed, the row4 and space with the username in topics is the same, how can I make these two separately editable? I think row4 is the same as the ad color but I don't although much like the previous modification, how do I make them both separately editable.
    Edited by abro, Jul 10 2009, 07:46 AM.
Offline Profile Quote Post Goto Top
 
Scan
Member Avatar
Member
 *   *  
abro
Jul 10 2009, 12:57 AM
BOARD URL: http://z3.invisionfree.com/testboardmwf/index.php


[*]Removing: "The Moderating Team|Today's Active Topics|Overall Top 10 Posters.
This code should work for you.

Add this code into the "Footers" section.
Code:
 
<script type="text/javascript">
<!--
/*
Remove The moderating team Section
Coded By Greg/Moose
Don't edit or repost
*/
var link = document.getElementsByTagName('a');
for(a=0;a<link.length;a++){
if(link[a].href.match(/CODE=leaders/) && link[a].innerHTML.match(/^The moderating team$/) && link[a+1].href.match(/CODE=getactive/) && link[a+2].href.match(/act=Stats/) && link[a+3].href.match(/max_results=10/) && link[a].parentNode.nodeName.match(/^DIV$/) && link[a].parentNode.align == "center"){
link[a].parentNode.style.display = "none";
break;
}}
//-->
</script>
Edited by Scan, Jul 10 2009, 06:26 AM.
Offline Profile Quote Post Goto Top
 
abro
Member
 *  
It's not working, I'm browsing with Firefox...
Offline Profile Quote Post Goto Top
 
Roby
Member Avatar
#27

This should take care of your first two ask fors
Headers - Below <% BOARD %>
Code: HTML
 
<script type="text/javascript">
document.getElementById("navstrip").style.display="none";
var eWdiv=document.getElementsByTagName("div");
var ediv=eWdiv.length;
while(ediv--){
if(eWdiv[ediv].innerHTML.indexOf("Welcome back; your")!=-1){
eWdiv[ediv].style.display='none';
}
}
</script>


To remove the darkrow stuff go into your CSS and replace the .darkrow2 line with this
Code: HTML
 
.darkrow2 { display:none; }
Edited by Roby, Jul 10 2009, 12:37 PM.
Offline Profile Quote Post Goto Top
 
Scan
Member Avatar
Member
 *   *  
abro
Jul 10 2009, 07:47 AM
It's not working, I'm browsing with Firefox...
Apply the code on top of the "Footers Section"
Offline Profile Quote Post Goto Top
 
abro
Member
 *  
Roby
Jul 10 2009, 12:36 PM
This should take care of your first two ask fors
Headers - Below <% BOARD %>
Code: HTML
 
<script type="text/javascript">
document.getElementById("navstrip").style.display="none";
var eWdiv=document.getElementsByTagName("div");
var ediv=eWdiv.length;
while(ediv--){
if(eWdiv[ediv].innerHTML.indexOf("Welcome back; your")!=-1){
eWdiv[ediv].style.display='none';
}
}
</script>


To remove the darkrow stuff go into your CSS and replace the .darkrow2 line with this
Code: HTML
 
.darkrow2 { display:none; }
The one for the headers made my board dissapear O_o The darkrow2 dissapeared at least though :D

When I removed it the board came back. Also, for Scan, I added it to the top and there's no effect. The only other code I have in footers is a div thing for my forum resize. Has this got something to do with my server 3?
Edited by abro, Jul 10 2009, 08:55 PM.
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · zIFBoards - Skinning & Code Support · Next Topic »
Add Reply