» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 42
0 members and 42 guests
No Members online
Most users ever online was 611, 03-21-2008 at 11:10 PM.
» .::.
Web Hosting - web hosting, dedicated servers and web design services
Online Degree - search for 1000+ online degrees, online colleges & online universities.
Tattoo - we are a group of tattoo enthusiasts
Gexa Energy - your absolute best choice in electric service
Texas electricity - save on electric rates
Oral Chelation - initial cleansing of your veins & arteries

Register Now! Contact Us

About this Page
This is a discussion on different images for block's titles within the Purged Topics forums, part of the NM Staff category; i want to put images in titles for each block... you can see http://www.bf42.com/ what i meant... ...


Go Back   Nukemods Forum » NM Staff » Purged Topics

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 03-07-2003, 09:11 AM
Junior Member
 
Join Date: Jan 2003
Posts: 83
different images for block's titles
i want to put images in titles for each block...

you can see http://www.bf42.com/ what i meant...
i know that is not an nuke site...but i'm wondering if this can be done in nuke 6.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 03-07-2003, 03:54 PM
Senior Member
 
Join Date: Sep 2002
Posts: 2,905
If you use Auto Theme to create your theme, then you can have Different Images for EACH block. However, with the conventional themes, the best you can do is have one image(same) in the top left corner for the blocks.

AutoTheme can be found here and it is NOT free anymore.
http://spidean.mckenzies.net/

mikem
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 03-07-2003, 07:33 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
so if u can see i'm using an Chronicle modified pack (is illegal to modify it if i keep the copyright?) http://21pzr.sysrq.no

So it can't be done :x no other flawless ideas how to solve this?

Another problem: I made the registration hack related to have the registration process through phpbb and not through default nuke... but still if i logon to nuke i can go to nuke Account ... (through Header link or User Info block) ...
i searched
"modules.php?name=$module_name&op=new_user \"
"modules.php?name=Forums&file=profile&mode=editpro file\"
"new_user" or "edituser" (as readme hack says)
in all my site files and nothing was found...

also login proocess is working through the default nuke (with that Lost Pass which activation code is required)

How can i fix this..i'm aware that will be many places where should i change...but i look forward to do it :?

use account: test/test for logining to the site
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 03-08-2003, 01:09 PM
Senior Member
 
Join Date: Oct 2002
Location: Alabama, USA
Posts: 619
To fix the link in the upper left, the one that says "create an account"

In "themes/your theme/theme.php" somewhere around line 59 Find:
Code:
$theuser = "<a href=\"modules.php?name=Your_Account&op=new_user\">Create an account";
Change it to:
Code:
$theuser = "<a href=\"modules.php?name=Forums&file=profile&mode=register\">Create an account";
And then it will work. Change this in each theme you use with the forum reg hack.

I found this around line 59 (may not be exactly there on your file) in the theme.php file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 03-08-2003, 01:54 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
thanks for this fix...
but still i have more to fix..if u can take a look to my site u can see that if u click on "Your account" from top navbar redirects to nuke login...if u log in ..redirects to nuke account...
almost same with User Info block...

u can log in to my site using test/test

thank you in advance
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 03-08-2003, 02:03 PM
Senior Member
 
Join Date: Oct 2002
Location: Alabama, USA
Posts: 619
The user info block I thought was fixed (the one in downloads here). I'll have to look in to the other.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 03-08-2003, 02:17 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
i don't use the user info block like it is in NM site..cause has that Avatar image...and i don't use Avatas in my website...should i install it and remove the avatar picture and replace the pictures from that block?..hmm sounds kind of tricky for me
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 03-08-2003, 02:23 PM
Senior Member
 
Join Date: Oct 2002
Location: Alabama, USA
Posts: 619
You should be able to use the instructions from the hack to change the links in your block. Or you could download the block from here and look at the code in it to change your block. I'm going to have to be gone for a few hours so I'll check back later.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 03-08-2003, 02:52 PM
Junior Member
 
Join Date: Jan 2003
Posts: 83
i think i will not use Modules block and top navbar...in this way i will solve the problem related to "Your Account" button...

Sorry to spawn this forum ...is this spawn is not allowed..please forgive me...and deleted this reply..


this is my code from block-User_Info.php where i don't know to solve the problem
Quote:
while ($session = sql_fetch_array($result2, $dbi)) {
if (isset($session["guest"]) and $session["guest"] == 0) {
if ($i < 10) {
$who_online_now .= "0$i:<A HREF=\"modules.php?name=Your_Account&amp;op=userin fo&amp;uname=$session[username]\">$session[username]</a>
\n";
} else {
$who_online_now .= "$i:<A HREF=\"modules.php?name=Your_Account&amp;op=userin fo&amp;uname=$session[username]\">$session[username]</a>
\n";
}
$who_online_now .= ($i != $member_online_num ? " " : "");
$i++;
}
}
point no.1 ...with what i should change this? (same question for all points)

Quote:
$who_online_num = $guest_online_num + $member_online_num;
$content .= "<form action=\"modules.php?name=Your_Account\" method=\"post\">";
point no.2 ..same problem
Quote:
$content .= "<img src=\"images/blocks/email-y.gif\" height=\"10\" width=\"14\"> <a href=\"modules.php?name=Private_Messages\">"._BPM."</a>
\n";
point no.3
Quote:
$content .= "<img src=\"images/blocks/ur-moderator.gif\" height=\"14\" width=\"17\"> "._BLATEST.": <A HREF=\"modules.php?name=Your_Account&amp;op=userin fo&amp;uname=$lastuser\">$lastuser</a>
\n";
point no.4
[/quote]
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
setting up your own block titles in image Rodriguez Site design 9 08-09-2008 08:26 AM
Automatically add User Group users by looking at Titles? Zathu_Koon Nuke 7.x - General 0 05-01-2006 12:21 AM
Titles In Navigation box 90thSFG Nuke 7.x - Blocks 5 06-08-2005 08:18 AM
How to remove center block titles? protegechris Nuke 7.x - Blocks 5 02-02-2005 03:35 AM
Give Your Site Dynamic Page Titles dalme Old News 0 04-24-2003 12:11 AM


All times are GMT -5. The time now is 08:17 AM.


Design by Vjacheslav Trushkin, color scheme by ColorizeIt!.

LinkBacks Enabled by vBSEO 3.1.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