Actually now the content bar is on the right in the child theme but there is an enormous page sized white space at the top of the web page.
I am wondering if the problem is my child functions.php file.
I upload a file with:
<?php
add_action( 'wp_enqueue_scripts', 'enqueue_child_theme_styles', PHP_INT_MAX);
function enqueue_child_theme_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
wp_enqueue_style( 'child-style', get_stylesheet_uri(), array('parent-style') );
}
It isn’t clear to me whether I need to close the code with ?> or not but whether I do or not, WordPress fills this file with 370 lines of code which starts off as below.
Also when I load a child style.css file with this in it:
/*
Theme Name: Twenty Fourteen Child
Theme URI: https://example.com/twenty-fourteen-child/
Description: Twenty Fourteen Child Theme
Author: Deborah Delin
Author URI: https://example.com
Template: twentyfourteen
Version: 1.0.0
Tags: light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
Text Domain: twenty-fourteen-child
*/
WordPress adds some 370 lines of code. What might be going on?
Some of the code WordPress adds to the functions.php file:
<!DOCTYPE html>
<!--[if IE 8]>
<html xmlns="https://www.w3.org/1999/xhtml" class="ie8 wp-toolbar" lang="en-US">
<![endif]-->
<!--[if !(IE 8) ]><!-->
<html xmlns="https://www.w3.org/1999/xhtml" class="wp-toolbar" lang="en-US">
<!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>FileManager ? ????????? — WordPress</title>
<script type="text/javascript">
addLoadEvent = function(func){if(typeof jQuery!="undefined")jQuery(document).ready(func);else if(typeof wpOnload!='function'){wpOnload=func;}else{var oldonload=wpOnload;wpOnload=function(){oldonload();func();}}};
var ajaxurl = '/wp-admin/admin-ajax.php',
pagenow = 'wp-filemanager/fm',
typenow = '',
adminpage = 'wp-filemanager-fm-php',
thousandsSeparator = ',',
decimalPoint = '.',
isRtl = 0;
</script>