Thanks Stephencottontail, I made a little mistake.
the function is not in header.php
it’s CALLED in header.php, but exists in functions.php
Do I just import all the php files from parent into childs?
Okay looks like It’s not the CSS problem, but php.
So here is the problem.
Let’s say there is a function called render_social , that renders social buttons in header.php [parent]
I create a new social render that seperates two different colors in childs theme, calling it render_social_child
[child]
but the problem is, how do I call it?
I had to go to header.php in parent theme and change it’s call of render_social to render_social_child
, but that meant I had to change the parent theme code
what can I do?