I don't agree with you. The problem lies within changes you have made.
First of all, you should not copy core css files into child theme but use override.css to change only necesary things overriding those from parent theme.
But now, when you have copied tablet.css to child theme to a directory:
wp-content/themes/Creative-Child/css/tablet.css
this file still have the code pointing to menu image:
- Code: Select all
#gk-head {
background: transparent url('../images/tablet_menu_btn.png') no-repeat right center;
}
So it is searching that file in:
wp-content/themes/Creative-Child/images/
folder (relatively to css file where this image is declared). Its as simple as that and has nothing to do with wrongly used ChildTheme idea by us
.