Adding links to the navbar..

  • Thread starter Thread starter Deleted member 5665
  • Start date Start date
D

Deleted member 5665

On wordpress I know how to edit the themes via admincp.. But I can't add links to the navbar..

Look: http://scourgeblog.info/

Where it shows: Home ' About ' Archives

on the top right I want to add another link on it how can I? I can't seem to find it.. :shrug:
 
I've not used Wordpress before so I'm not sure, if you can edit the theme I'd assume you could add/remove buttons however those links in the nav bar are images so you would need to scale them down as you don't have enough room as is.
 
Check out the header.php file. However, since they are images, I doubt the search image automatically stretches out for extra links.
 
Here is my header.php

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<?php wp_head(); ?>
</head>
<body>

I can't seem to find it 😕
 
dotDavid said:
Check out the header.php file. However, since they are images, I doubt the search image automatically stretches out for extra links.

Your right it won't extend.. I find them just now its the navigation.php :lol:

Code:
<ul id="menu">
  <li id="home"><a href="/">Home</a></li>
  <li id="about"><a href="/?page_id=2">About</a></li>
  <li id="archives"><a href="/?page_id=2">Archives</a></li>
</ul>

It won't extend just tried.. :cry:

I got a new awesome theme so now I can.
 
Back
Top Bottom