Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Online Users: 95
6 members and 89 guests
add5pntrmwe4kde, lastf7vegaswebs, limehohimsrrepe, prizzwbvatejajw, ralnn7eighhoukw, sha8dxekercup6s
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 > PHP-Nuke 7.x > Nuke 7.x - Blocks

Reply
 
LinkBack Thread Tools Display Modes
Block join @
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 38
Join Date: Feb 2006
Block join @ - 07-27-2006, 03:15 PM

Hi there Duke and others long to no see
Thanks for the past help...i have a question i wonder you guys can help:
I wanted to join up the left block togather with the right, how or where should i edit? Theme is ICG. Appreciate if this problem can be solve thanks you. :P
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Junior Member
 
Status: Offline
Posts: 242
Join Date: May 2005
07-27-2006, 05:03 PM

Not sure I understand.

You want to join up the left block with the right? I'm not sure what that means.

Can you elaborate?
   
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: 38
Join Date: Feb 2006
07-28-2006, 11:38 AM

Quote:
Originally Posted by myrtletrees
Not sure I understand.

You want to join up the left block with the right? I'm not sure what that means.

Can you elaborate?
myrtletrees hello there
ok hmm by default the theme show right and left block...i see some theme that show right and left block by side by side .so another words the content is shown on the left and both right and left block are on the right side
ICG theme show the default block position myrtletrees how or which file to edit change the position to the block? i hope this can explain it clearer /:P
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Junior Member
 
Status: Offline
Posts: 242
Join Date: May 2005
07-28-2006, 12:47 PM

OK I think I understand.

Instead of having right blocks on the right, stories in the middle, then left blocks on left, You want

Stories on left, Right blocks to right then left blocks to right center.

IN your theme.php

Move this bit of code

Code:
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}
to right under these two lines

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
so that it looks like this under the function themefooter

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;

    if (defined('INDEX_FILE')) {
	$tmpl_file = "themes/iCGstation/center_right.html";
	$thefile = implode("", file($tmpl_file));
	$thefile = addslashes($thefile);
	$thefile = "\$r_file=\"".$thefile."\";";
	eval($thefile);
	print $r_file;
	blocks(right);
    }
then open your left_center.html file and change the width="100%" to width="170"
   
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: 38
Join Date: Feb 2006
07-28-2006, 01:11 PM

Quote:
Originally Posted by myrtletrees
OK I think I understand.

Instead of having right blocks on the right, stories in the middle, then left blocks on left, You want

Stories on left, Right blocks to right then left blocks to right center.

IN your theme.php

Move this bit of code

Code:
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}
to right under these two lines

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
so that it looks like this under the function themefooter

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;

    if (defined('INDEX_FILE')) {
	$tmpl_file = "themes/iCGstation/center_right.html";
	$thefile = implode("", file($tmpl_file));
	$thefile = addslashes($thefile);
	$thefile = "\$r_file=\"".$thefile."\";";
	eval($thefile);
	print $r_file;
	blocks(right);
    }
then open your left_center.html file and change the width="100%" to width="170"
Ah !! thanks will work on it. right now it s bed time LOL
Many thanks myrtletrees mahz i own you a cup of coffee
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#6 (permalink))
Junior Member
 
Status: Offline
Posts: 38
Join Date: Feb 2006
07-28-2006, 03:53 PM

Quote:
Originally Posted by unno
Quote:
Originally Posted by myrtletrees
OK I think I understand.

Instead of having right blocks on the right, stories in the middle, then left blocks on left, You want

Stories on left, Right blocks to right then left blocks to right center.

IN your theme.php

Move this bit of code

Code:
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;
}
to right under these two lines

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
so that it looks like this under the function themefooter

Code:
function themefooter() {
    global $index, $foot1, $foot2, $foot3, $foot4, $copyright, $totaltime, $footer_message;
    blocks(left);
    $tmpl_file = "themes/iCGstation/left_center.html";
    $thefile = implode("", file($tmpl_file));
    $thefile = addslashes($thefile);
    $thefile = "\$r_file=\"".$thefile."\";";
    eval($thefile);
    print $r_file;

    if (defined('INDEX_FILE')) {
	$tmpl_file = "themes/iCGstation/center_right.html";
	$thefile = implode("", file($tmpl_file));
	$thefile = addslashes($thefile);
	$thefile = "\$r_file=\"".$thefile."\";";
	eval($thefile);
	print $r_file;
	blocks(right);
    }
then open your left_center.html file and change the width="100%" to width="170"
Ah !! thanks will work on it. right now it s bed time LOL
Many thanks myrtletrees mahz i own you a cup of coffee

Myrtletrees help the theme din appear right.

There was a error the left block appear below the content. and the content display area was narrow.

blocks(left);
$tmpl_file = "themes/iCGstation/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;


if ($index == 1) {
$tmpl_file = "themes/iCGstation/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
   
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





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