

/*
	OK! the css background property is an OBJECT and it has ALL THE OTHER PROPERTIES that can be set for an element's background
		such as background-image: url | background-repeat | background-position | yada yada yoda yoga

	SO - if you set 
		background: purple;  the ENTIRE BACKGROUND PROPERTY has only the COLOR attribute defined in its very involved declaration line such as 
		


*/


body{
  background: purple;				/* if background is LAST in the css cascade then the object WILL ONLY BE THIS ONE SOLID COLOR
									   meaning this obliviates ALL other background properties such as 
										-image | -repeat | position | size
										this is the css property for the simplicity of one SOLID BACKGROUND COLOR for the entire object
										BUT ONLY if it appears last in the css cascade AFTER ALL THE OTHER DETAILED background property options
  /*background-color: lightblue; 	   this allows for ALL the other background properties to 	*/	
}



/* Hide WPUM "Signup Now" link PLUS the "already have an account, SIGN IN Now - they both are part of the same class "*/
/*


.wpum-action-links {
  display: none !important;
}
*/

/*this does nothing*/
/*
.wpum-login-register {
  display: none !important;
}
*/

/*only hide the first element in this <ul> - which is the REGISTRATION link*/
/*
.wpum-action-links li:first-child {
  display: none !important;
}
*/

