Styles not showing up in WordPress site

I usually append a random number to the end of the stylesheet while in development mode, if I upload the file to the production server I manually change the version number like this: // Version – to prevent caching $version = mt_rand(1000, 100000); // $version = 1.0.0.0; // Enqueue CSS function wpb_enqueue_styles() { global $version; … Read more

Get Sub-Menu Dropdown to Show Over Page Content Avada

This is a relatively simple CSS issue. I just checked your output HTML and located the top most parent container for the navigation. Then I added, in dev tools the following CSS: .fusion-tb-header .fusion-fullwidth{ position: relative; z-index: 100; } That essentially moves the navigation’s parent container row to sit above (on the Z axis) the … Read more