editing #nav containers — adding a tab/link in header – nav bar
-
I would like to know how to add a tab/link to the nag bar of my studios website… I have some website skills, but apparently not enough to figure out ow to edit the info of the div/container inside the header to add “studio b” as a tab! I’ve been searching everywhere. Someone come to my rescue!
https://www.catchthismusic.com
Here is the code from the header.php
I would specifically like to know if there is a universal .php file that the info is kept in.
<!DOCTYPE html>
<title><?php wp_title(); ?></title>
<link href=”<?php echo site_url(); ?>/wp-content/uploads/favicon.ico” rel=”shortcut icon” />
<meta http-equiv=”content-type” content=”<?php bloginfo(‘html_type’) ?>; charset=<?php bloginfo(‘charset’) ?>” /><?php if(is_search()) { ?>
<meta name=”robots” content=”index, follow” />
<?php }?><!–Google Web Font–>
<link href=’https://fonts.googleapis.com/css?family=Patua+One’ rel=’stylesheet’ type=’text/css’>
<link href=’https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,700,700italic’ rel=’stylesheet’ type=’text/css’>
<link href=’https://fonts.googleapis.com/css?family=Yesteryear’ rel=’stylesheet’ type=’text/css’><link rel=”stylesheet” type=”text/css” href=”<?php bloginfo(‘stylesheet_url’); ?>” 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>
<div id=”top-nav”>
<div class=”inner-container”>
<div id=”mobile-view”>
Mobile View
</div>
<div id=”top-nav-welcome-text”>
Welcome to CTM Studios,
A Division of Catch This Music.
</div><div id=”top-nav-ctm-icons”>
<img src=”<?php bloginfo(‘template_url’); ?>/images/ctm-records-icon.png” />
<img src=”<?php bloginfo(‘template_url’); ?>/images/ctm-studios-icon.png” />
<img src=”<?php bloginfo(‘template_url’); ?>/images/ctm-writersink-icon.png” />
<img src=”<?php bloginfo(‘template_url’); ?>/images/getupdates.png” />
</div>
</div>
</div><div class=”inner-container”>
<div id=”header”>
<div id=”logo”>
<img src=”<?php bloginfo(‘template_url’); ?>/images/logo.png” />
</div><div id=”nav”> <!– Navigation –>
-
<?php wp_list_pages(‘orderby=menu_order&title_li=&depth=1&include=4,6,8,10,12,14,80,119,159,448’); ?>
</div>
<div id=”social-nav”> <!– Navigation –>-
<?php wp_list_bookmarks(‘title_li=&categorize=0&category=3&orderby=url’); ?>
</div>
</div> <!– End Header –><div id=”body”>
- The topic ‘editing #nav containers — adding a tab/link in header – nav bar’ is closed to new replies.