Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 86
9 members and 77 guests
achtso4illesttj, claudiamazzonif, getzw5tridofy6n, horbd4aseracidn, howsztoge2xwtp, hypye4notherape, res3sawumewotg4, snahwpbaxj2fckc, watpperpr
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

Go Back   Nukemods Forum > General > Site design

Reply
 
LinkBack Thread Tools Display Modes
Removing Search box from header
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 13
Join Date: Dec 2004
Removing Search box from header - 12-19-2004, 08:56 PM

Can some1 pls explain how to remove the search box from the header

ty for reading
CCC
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
12-19-2004, 10:07 PM

nukemod's forum posting rule#7
Quote:
7. Help us help you. When you post, post as much information as you can:

- Your Setup
- Your version(s) of software
- Your specific problem
- Be as detailed as possible
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 13
Join Date: Dec 2004
12-21-2004, 02:08 PM

my bad... im using.... 7.5.... i want take out the default search box
& change/remove the basic navigation links
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Moderator
 
Status: Offline
Posts: 260
Join Date: Oct 2004
12-21-2004, 03:14 PM

I guess you are using one of nukemods theme? Then edit header.html in any html editor.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 13
Join Date: Dec 2004
12-22-2004, 11:26 PM

I am using the kaput theme, i've taken ur advice and checked over the header.php file and i dont seem to be having any luck, i am basically searching through the code and looking for the "home" "topic" etc links but i dont seem to be having any luck.. thanks for getting back to me!

CCC
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#6 (permalink))
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
12-23-2004, 08:31 AM

open the
themes/Kaput/theme.php file
Find this code

Code:
function themeheader() {
    global $user, $sitename;
    cookiedecode($user);
    $username = $cookie[1];
    if ($username == "") {
        $username = "Anonymous";
    }
    echo "<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">\n"
	."
\n";
    if ($banners) {
	include("banners.php");
    }
    OpenTable();
    echo "<table border=\"0\"><tr><td rowspan=\"2\">"
	."<a href=\"index.php\"><img src=\"themes/Kaput/images/logo.gif\" border=\"0\" alt=\""._WELCOMETO." $sitename\" align=\"left\"></a></td>"
	."<td align=right width=100%>"
        ."<form action=\"modules.php?name=Search\" method=\"post\">"
        ."<font class=\"content\" color=\"#000000\">"._SEARCH." "
        ."<input type=\"text\" name=\"query\" size=\"14\"></font></form>"
        ."</td></tr><tr>"
        ."<td align=\"right\" valign=\"bottom\" width=\"100%\">"
        ."<font class=\"content\">"
	."<A href=\"/\">Home</a>&middot;<A href=\"modules.php?name=Topics\">Topics</a>&middot;&nbsp"
        ."<A href=\"modules.php?name=Downloads\">Downloads</a>&middot;<A href=\"modules.php?name=Your_Account\">Your Account</a>"
        ."&middot;<A href=\"modules.php?name=Forum\">Forums</a>&middot;<A href=\"modules.php?name=Top\">Top 10</a>"
        ."</font></td></tr></table>\n";
    CloseTable();
    $public_msg = public_message();
    echo "$public_msg
";	
    echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"99%\" border=\"0\" align=\"center\" bgcolor=\"#ffffff\">\n"
	."<tr><td bgcolor=\"#ffffff\" valign=\"top\">\n";
    blocks(left);
    echo "</td><td><img src=\"themes/NukeNews/images/pixel.gif\" width=\"15\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\" valign=top>\n";
}
change it to this

Code:
function themeheader() {
    global $user, $sitename;
    cookiedecode($user);
    $username = $cookie[1];
    if ($username == "") {
        $username = "Anonymous";
    }
    echo "<body bgcolor=\"#FFFFFF\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">\n"
	."
\n";
    if ($banners) {
	include("banners.php");
    }
    OpenTable();
    echo "<table border=\"0\"><tr><td rowspan=\"2\">"
	."<a href=\"index.php\"><img src=\"themes/Kaput/images/logo.gif\" border=\"0\" alt=\""._WELCOMETO." $sitename\" align=\"left\"></a></td>"
	."<td align=right width=100%>"
//        ."<form action=\"modules.php?name=Search\" method=\"post\">"
//        ."<font class=\"content\" color=\"#000000\">"._SEARCH." "
//        ."<input type=\"text\" name=\"query\" size=\"14\"></font></form>"
        ."</td></tr><tr>"
        ."<td align=\"right\" valign=\"bottom\" width=\"100%\">"
        ."<font class=\"content\">"
	."<A href=\"/\">Home</a>&middot;<A href=\"modules.php?name=Topics\">Topics</a>&middot;&nbsp"
        ."<A href=\"modules.php?name=Downloads\">Downloads</a>&middot;<A href=\"modules.php?name=Your_Account\">Your Account</a>"
        ."&middot;<A href=\"modules.php?name=Forum\">Forums</a>&middot;<A href=\"modules.php?name=Top\">Top 10</a>"
        ."</font></td></tr></table>\n";
    CloseTable();
    $public_msg = public_message();
    echo "$public_msg
";	
    echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"99%\" border=\"0\" align=\"center\" bgcolor=\"#ffffff\">\n"
	."<tr><td bgcolor=\"#ffffff\" valign=\"top\">\n";
    blocks(left);
    echo "</td><td><img src=\"themes/NukeNews/images/pixel.gif\" width=\"15\" height=\"1\" border=\"0\" alt=\"\"></td><td width=\"100%\" valign=top>\n";
}
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#7 (permalink))
Junior Member
 
Status: Offline
Posts: 13
Join Date: Dec 2004
12-23-2004, 08:48 PM

Thankyou Mikem that was extremly helpful!!!!!
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help removing phpnuke header logo pHREDD Nuke 7.x - General 3 01-23-2006 10:28 PM
Removing the header? mysscryss Nuke 7.x - General 0 03-24-2005 07:19 PM
Removing Header for fiblue3d TheGuy Theme packs 0 01-02-2005 05:48 PM
want to mod search module to also search content rasputin Nuke 6.5 to 6.9 - Modules 2 08-10-2003 05:18 AM
Removing underline from all links ronsta Nuke 6.5 to 6.9 - Themes 1 05-02-2003 06:35 PM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31