Your question is general, so I cannot answer it in details.
If the parent theme enqueues some styles using get_stylesheet_directory_uri() in the path they won’t be available in child theme. Then you should enqueue lacking stylesheets in your child’s function.php using get_template_directory_uri() which will point to the parent theme directory.
Some example:
add_action( 'wp_enqueue_scripts', 'wpse179217_enqueue_styles' );
function wpse179217_enqueue_styles() {
wp_enqueue_style( 'parent_name-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'parent_name-odometerstyle', get_template_directory_uri() . '/css/odometer-theme-default.css', array(), '' );
wp_enqueue_style( 'parent_name-animate', get_template_directory_uri() . '/css/animate.css', array(), '1.0' );
wp_enqueue_style( 'child_name-style', get_stylesheet_uri(), array( 'parent_name-style' ) );
}
Related Posts:
- How do I dequeue a parent theme’s CSS file?
- How to properly dequeue scripts and styles in child theme?
- jquery script not enqueued in child theme
- Adding Custom Javascript to Skeleton Child Theme
- Child Theme – what is the scope of overwriting files?
- How to dequeue / deregister parent theme style
- Including style.css in Child Theme
- Including files in Child Themes
- get_stylesheet_directory() in child theme breaks parent scripts
- wp_enqueue_style referencing parent theme
- Modular CSS and JS in Child Themes
- css3-mediaqueries-js failing with child theme
- wp enqueue inline script due to dependancies
- Check if a script/style was enqueued/registered
- Is it possible to use wp_localize_script to create global JS variables without a specific script handle?
- How to load css in the footer [duplicate]
- Protocol neutral URLS with wp_enqueue_script (SSL issues)?
- How to en-queue bootstrap 4 to theme?
- Notice that the wp_enqueue_style is not being called correctly!
- Is it safe/recommended to use wp_enqueue_script function outside the functions.php file?
- wp_enqueue script my_javascript_file in the footer
- How to load JQuery easing script in wordpress?
- Hook for writing text string after footer scripts
- Why does this line of code make photo albums appear?
- Issue with using Underscore in WordPress
- Trying to load different syles for 404.php page
- Enqueue Script with URL parameters
- Track down where script is being enqueued from
- $wp_styles->registered not giving ALL the styles?
- Benefits to enqueuing site scripts/stylesheets?
- Problem in wp_localize_script
- Enqueue scripts to a specific header-.php?
- Which are the MediaElement.js scripts to enqueue
- Best way to enqueue extremely popular scripts like bootstrap and font awesome
- How to remove some external js files from source?
- Enqueued scripts and styles loading in WordPress Dashboard as well
- Enqueue styles properly in a child theme and stylesheets location
- The wp_enqueue_scripts hook doesn’t work at all, not from plugin, not from the template, not for frontend, not for admin pages!
- How can I load script and style in specific page in the back-end?
- Enqueue script with url_query variables?
- wp_enqueue_script with dependencies doesn’t work
- wp_enqueue_script order – external vs inline js
- What are the advantages of using wp_enqueue_script()
- Modernizr check first, then move on to wp_register_script()/wp_enqueue_script
- How do I get a child theme to load scripts from the parent theme?
- How do I enqueue a JavaScript in my footer via the functions.php file?
- Enqueue Style for a page/pages only
- Adding tawk.to code just before body tag on functions.php file
- Why are files enqueued with wp_enqueue_style and wp_enqueue_script 404 Not Found?
- wp enqueue script- jQuery not loading
- 404 Error on trying to enqueue a JS file
- Utilizing WordPress’ Admin UI for plugin settings: getting accordion style
- debugging js scripts
- Getting wp_footer() to work without wp_head()
- Move scripts to footer, but exclude one script?
- How to set cookies to switch style sheets when a link is clicked and set it till another particular link is clicked?
- Is there a way to list all the JavaScript scripts that are actually loaded by WordPress? Do we care?
- How can I manually enqueue plugin scripts
- How to enqueue JavaScript file that depends on CSS stylesheet
- wp_editor() youtube link does not load video
- Enqueue customizer scripts that are bundled by webpack?
- Adding multiple wp_register_scripts for templates in WordPres?
- How do I get jQuery to Load before Bootstrap?
- Deregister multiple scripts using a function?
- How to enqueue default scripts with dependency?
- Where to insert Google Maps API code in functions.php
- wp_enqueue_script was called incorrectly Issue when active plugins of WordPress Admin Bar Improved
- wp_enqueue_scripts does not work
- How to add conditionals for IE browsers between certain versions?
- call my script only after loading UI library?
- Loading Scripts For Specific Template
- All of my Scripts and Enques are getting file not found
- If a Script has been enqueued but not registered can I still removed it?
- include jquery plugin file not working
- why wp_enqueue_scripts() not working?
- how to load css and js based on post template
- How to use wp_register_script / wp_enqueue_script for multiple queries
- scripts not loading
- FullCalendar in WordPress is not working
- Wp_deregister_script() doesn’t work
- enqueue_scripts() in child theme doesn’t work
- How do you load js and style resources from CDN with local fallback using wp_enqueue_scripts?
- Issues with wp_enqueue_script and jquery-ui
- wp_localize_script & wp_enqueue_script not working in front end
- wordpress enqueue script not working
- Page not found when trying to link to files in child theme directory
- Load scripts only for selected template
- WordPress – enqueue js issue – page broken, no error
- Enqueue script with version number not working
- How to enqueue a script on a specific URL that contains multiple parts
- Set a parent script presence status true so that child scripts load in wordpress
- correct path for enqueue script in WordPress
- map enqueue in backend
- How to get, in WP page’s script, a wp enqueued script (in Functions.php)?
- Most optimal way of starting fresh, without using other theme or dropping old files?
- Bootstrap sticky menu in WordPress
- Bootstrap css not getting applied to the custom WordPress Dashboard Widget
- WooCommerce not enqueuing its scripts [closed]
- See Scripts used by Page
- WordPress | enqueue_scripts in a child’s theme returns error