This is my attempt at making a child theme, and everything seems to be working well, however when I view the source code I’m seeing this
<link rel='stylesheet' id='bootstrap-css' href='http://wpdallas.com/test/wp-content/themes/Standard/css/lib/bootstrap.css?ver=3.3.1' type='text/css' media='all' />
which gives me a 404 error. I’m not sure what’s going on, and how to fix this….and what problems this could cause me. The site seems to be working fine even with that error. I’m just trying to figure out what it is.
Thanks
From your comment:
/css/lib/bootstrap.css
? If so, then it should be loading properly.bootstrap.css
anywhere else in your Theme’s file structure? If so, then you should change thewp_register_style()
function accordingly, to reference the correct file location./css/lib/bootstrap.css
in the Parent Theme, due toget_template_directory_uri()
. If you have the files in your Child Theme, change that toget_stylesheet_directory_uri()
.Edit
Also, the link doesn’t return a 404 for me. I can see the stylesheet, just fine.