You are missing our premiere tool bar navigation system! Register and use it for FREE!

NukeCops  
•  Home •  Downloads •  Gallery •  Your Account •  Forums • 
Readme First
- Readme First! -

Read and follow the rules, otherwise your posts will be closed
Modules
· Home
· FAQ
· Buy a Theme
· Advertising
· AvantGo
· Bookmarks
· Columbia
· Community
· Donations
· Downloads
· Feedback
· Forums
· PHP-Nuke HOWTO
· Private Messages
· Search
· Statistics
· Stories Archive
· Submit News
· Surveys
· Theme Gallery
· Top
· Topics
· Your Account
Who's Online
There are currently, 69 guest(s) and 0 member(s) that are online.

You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - Text disappears in Block? [ ]
 Forum FAQ  •  Search  •   •  Memberlist  •  Usergroups   •  Register  •  Profile •    •  Log in to check your private messages  •  Log in

 
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
Author Message
Snake
Nuke Cadet
Nuke Cadet


Joined: Apr 21, 2003
Posts: 5


PostPosted: Mon Apr 21, 2003 9:56 am Reply with quoteBack to top

Hi
First want to say this has been my favorite info source for help in my php-nuke learning experience over the last few days, congrats to the Nuke Cops and thier members for providing a great place to help a guy out.


I have a question. I made a block for links to a certain section of our site and it is broken down into 4 sections. its a Race league and we have 4 divisions. Each Division is titled by some bold text to seperate. The text appears on the block but when you click on any of the links and the page changes, the text disappears. The links don't , just the text. I tried standard html as it asks for and also wrote one in notepad and to no avail. Any Idea? if you need to see the code I can do that too. Thanks a million.

Snake
Find all posts by SnakeView user's profileSend private messageVisit poster's website
ArtificialIntel



Joined: Jan 31, 2004
Posts: -88


PostPosted: Mon Apr 21, 2003 9:59 am Reply with quoteBack to top

code'd be nice.

AI
Find all posts by ArtificialIntelView user's profileSend private message
Snake
Nuke Cadet
Nuke Cadet


Joined: Apr 21, 2003
Posts: 5


PostPosted: Mon Apr 21, 2003 10:14 am Reply with quoteBack to top

Thanks AI

Code:
<?php
#### generated by block creator - www.moffstarr.com ###
if (eregi("block-creator.php",$PHP_SELF)) {
    Header("Location: index.php");
    die();
}
$content  =  "<b>Adam Petty</b><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=apdrivers\"> ";
$content  .= "Drivers</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=apschedule\"> ";
$content  .= "Schedule</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=apresults\"> ";
$content  .= "Results</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=apstandings\"> ";
$content  .= "Standings</a><br>";
$content  .= "<b>Kenny Irwin</b><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=kidrivers\"> ";
$content  .= "Drivers</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=kischedule\"> ";
$content  .= "Schedule</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=kiresults\"> ";
$content  .= "Results</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=kistandings\"> ";
$content  .= "Standings</a><br><b>Davey Allison Division</b><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=dadrivers\"> ";
$content  .= "Drivers</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=daschedule\"> ";
$content  .= "Schedule</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=daresults\"> ";
$content  .= "Results</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=dastandings\"> ";
$content  .= "Standings</a><br>";
$content  .= "<b>Dale Earnhardt Division</b><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=dedrivers\"> ";
$content  .= "Drivers</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=deschedule\"> ";
$content  .= "Schedule</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=deresults\"> ";
$content  .= "Results</a><br>";
$content  .= "<strong><big>·</big></strong> ";
$content  .= "<a href=\"http://www.fbrl.net/modules.php?name=destandings\"> ";
$content  .= "Standings</a><br";
?>
Find all posts by SnakeView user's profileSend private messageVisit poster's website
ArtificialIntel



Joined: Jan 31, 2004
Posts: -88


PostPosted: Mon Apr 21, 2003 10:45 am Reply with quoteBack to top

if u use Nuke 6.5, change $PHP_SELF to $_SERVER['PHP_SELF']

Next. For the links, instead of seperating them over 2 lines, why not put them onto the same $content .= line (just don't close the quotes till after the <br> tag)

AI
Find all posts by ArtificialIntelView user's profileSend private message
Snake
Nuke Cadet
Nuke Cadet


Joined: Apr 21, 2003
Posts: 5


PostPosted: Mon Apr 21, 2003 1:18 pm Reply with quoteBack to top

Thanks a bunch AI

I made the changes as you posted however it still does it. One thing i found out was they don't actually disappear they just change color to match the background. If you highlight the block you can see they are there. Something in the Skin maybe? I am using the Enigma Skin. Not sure if there are reported errors with that one.

Snake
Find all posts by SnakeView user's profileSend private messageVisit poster's website
Display posts from previous:      
Post new topic  Reply to topicprinter-friendly view
View previous topic Log in to check your private messages View next topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Powered by phpBB © 2001, 2005 phpBB Group

Ported by Nuke Cops © 2003 www.nukecops.com
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::
Powered by · TOGETHER TEAM srl ITALY http://www.togetherteam.it · DONDELEO E-COMMERCE http://www.DonDeLeo.com
Web site engine's code is Copyright © 2002 by PHP-Nuke. All Rights Reserved. PHP-Nuke is Free Software released under the GNU/GPL license.
Page Generation: 0.346 Seconds - 255 pages served in past 5 minutes. Nuke Cops Founded by Paul Laudanski (Zhen-Xjell)
:: FI Theme :: PHP-Nuke theme by coldblooded (www.nukemods.com) ::