/*
 Theme Name:   GeneratePress Child
 Theme URI:    http://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Thomas Usborne
 Author URI:   http://edge22.com
 Template:     generatepress
 Version:      0.1
 Tags: two-columns, three-columns, one-column, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-background, custom-menu, custom-colors, sticky-post, threaded-comments, translation-ready, featured-images, theme-options, light, white, dark, black, blue, brown, gray, green, orange, pink, purple, red, silver, tan, yellow

2016-05-31: changed header widget "max-width" from 80% to 100% to accommodate the 80px Meta Slider
*/

.header-widget {

                max-width: 100%;
}

/* 
2017-03-26
		position: absolute; ** This line caused a problem with placement of the menu

I'm having a problem lining up the left edge of the header (meta-slider) with the margin. The above code was installed last year and worked at the time. The following lines did not affect any noticeable change.
		padding: 0;
    		margin: 0;
	        left: -500;
    		right: auto;
These seem to help, but the header is not full width (1200px):
                max-width: 100%;
		position: relative;
        	left: -50px;
    		top: 0px;
=================
Solution Found: Meta Slider plugin was set to "Nivo Slider" and was preventing full width display of the 
graphic. Changing to "Flex Slider" solved the whole problem. I set the CSS back to the settings Thomas
provided last year.

*/