I just setup a site:
http://www.farsideofthegalaxy.com, and I installed some blogging software on it. My problem though, is that I want to change the top url bar. As you can see I added a line in my main.php file to get the testing link, but for some reason that points to the skins directory. Also once I get the link working, I would like to be able to keep the green link bar at the top. I would think that that would be a simple include command, but I'm not a programmer, and even this is way over my head. In theory it should work, but I'm just not sure how to code it.
PHP Code:
<div id="menu">
[url="<?php bloginfo('url'); ?>"]home[/url]
<?php
user_login_link( '', '' );
user_register_link( '', '' );
user_admin_link( '', '' );
user_profile_link( '', '' );
user_logout_link( '', '' );
?>
[url="<?php $Blog->disp( 'lastcommentsurl', 'raw' ) ?>"]<?php echo T_('Last comments') ?>[/url]
[url="<?php $Blog->disp( 'blogstatsurl', 'raw' ) ?>"]<?php echo T_('Some viewing statistics') ?>[/url]
[url="<?php $Blog->disp( 'samedirfilename.html', 'raw' ) ?>"]<?php echo T_('testing') ?>[/url]
</div>
<div id="header">
That's the code I changed, and as you can see I just added another line and changed the title to testing. The links seem to be variables, and I think they go out to other files as well. Would appreciate any help. Maybe it'd be easier for someone who knows php! If you need the entire main.php file, or any other file let me know and I'll gladly supply that or more info. Thanks in advance.