Home Forums WordPress Themes – Premium Circumference White space at top of content area Reply To: White space at top of content area

#19759
Sushil Adhikari
Moderator

@Louis…the child theme already has a style.css so all you need to do is to copy only the parts of the other one that you want to change. So for example, if the parent theme’s style.css has this:

#cir-banner {
	min-height: 2.5em;
	background-color:#7FAAB5;
	background-position: center;
}

….and you just want to change the min-height, then you would copy this part over to the style.css in the child theme and make your change there:

#cir-banner {
	min-height: 1.5em;
}

Only take the part that you want to change.