Adding a site menu to wordpress blog
-
I have a standardized menu that I use on all my web pages.(viadecristo.org). I would like to use this same menu in the header section of my wordpress blog portion of my site. (viadecristo.org/blog.
I am using version 3.5.1 and the default twentytwelve style I have been able to modify the header.php file to get my menu to show up but I have this large gap in the table structure. It looks as though there is something else trying to be inserted into the table for my menus.
The menu is stored in a file elsewhere on the web site and brought into the header section with the following code:
<?php $path = “https://viadecristo.org”;
require ($path.”/includes/menu-boardermaster09.inc”);
?>
This works fine on all my other pages. I included it in the header .PHP file like this:<header id=”masthead” class=”site-header” role=”banner”>
<hgroup>
<?php $path = “https://viadecristo.org”;
require ($path.”/includes/menu-boardermaster09.inc”);
?></hgroup>
Can somebody suggest another place to look for the hearder Size information?
- The topic ‘Adding a site menu to wordpress blog’ is closed to new replies.