Hi,
JQuery is not in my theme. My theme is fairly basic. It has a header.php:
‘<!doctype html>
<!–[if lt IE 7]> <html class=”ie6 oldie”> <![endif]–>
<!–[if IE 7]> <html class=”ie7 oldie”> <![endif]–>
<!–[if IE 8]> <html class=”ie8 oldie”> <![endif]–>
<!–[if gt IE 8]><!–>
<html class=””>
<!–<![endif]–>
<head>
<meta charset=”utf-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
<title>Savor Test</title>
<link href=”css/boilerplate.css” rel=”stylesheet” type=”text/css”>
<link href=”<?php bloginfo(‘stylesheet_url’); ?>” rel=”stylesheet” type=”text/css”>
<meta name=”description” content=”Savor”/>
<meta name=”keywords” content=”Savor” />
<!–
To learn more about the conditional comments around the html tags at the top of the file:
paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/
Do the following if you’re using your customized build of modernizr (https://www.modernizr.com/):
* insert the link to your js here
* remove the link below to the html5shiv
* add the “no-js” class to the html tags at the top
* you can also remove the link to respond.min.js if you included the MQ Polyfill in your modernizr build
–>
<script src=”css/respond.min.js”></script>
<!–[if lt IE 9]>
<script src=”//html5shiv.googlecode.com/svn/trunk/html5.js”></script>
<![endif]–>
</head>
<body>
<div class=”container”>
<div align=”center”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘header-menu’ ) ); ?>’
An index.php file with the following code:
‘<?php
/*
Template Name: index
*/
?>
<?php get_header(); ?>
<div id=”main”>
<div id=”content”>
<?php if (have_posts() ) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>
<div class=”entry”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages‘,’after’ => ‘</p>’, ‘next_cr_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’,'<p>’,'</p>’); ?>
</div>
</div>
<?php get_footer(); ?>’
And a footer file footer.php:
‘ <?php wp_footer();?>
</div>
</body>
</html>
And a functions file functions.php:
<?php function register_my_menu() {
register_nav_menu(‘header-menu’,__( ‘Header Menu’ ));
}
add_action( ‘init’, ‘register_my_menu’ );
?>’
The style sheet is really basic:
‘/*
Theme Name: savor-test
Theme URI: https://savor-test.com/wp-content/themes/savor-test
Author: Margaret Ames
Author URI: https://amazinglyaffordablewebdesign.com
Description: This is the main style sheet that styles pages for savor-test.
Version: 1.0
License: None
License URI: None
Tags:
Text Domain: savor-test
*/
@charset “utf-8”;
/* Simple fluid media
Note: Fluid media requires that you remove the media’s height and width attributes from the HTML
https://www.alistapart.com/articles/fluid-images/
*/
img, object, embed, video {
max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
width:100%;
}
/*
Dreamweaver Fluid Grid Properties
———————————-
dw-num-cols-mobile: 5;
dw-num-cols-tablet: 8;
dw-num-cols-desktop: 10;
dw-gutter-percentage: 25;
Inspiration from “Responsive Web Design” by Ethan Marcotte
https://www.alistapart.com/articles/responsive-web-design
and Golden Grid System by Joni Korpi
https://goldengridsystem.com/
*/
/* Mobile Layout: 480px and below. */
.gridContainer {
margin-left: auto;
margin-right: auto;
width: 87.36%;
padding-left: 1.82%;
padding-right: 1.82%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
.gridContainer {
width: 90.675%;
padding-left: 1.1625%;
padding-right: 1.1625%;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
}
/* Desktop Layout: 769px to a max of 1232px. Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
.gridContainer {
width: 88.2%;
max-width: 1232px;
padding-left: 0.9%;
padding-right: 0.9%;
margin: auto;
}
#LayoutDiv1 {
clear: both;
float: left;
margin-left: 0;
width: 100%;
display: block;
}
}’
Nothing else. :(. Thanks, Margaret