Site logo

Archived topic

Fix the Top Bar

5 replies · Started by Parag Agarwal on March 5, 2023

Viewing posts 1–6 of 6

I want Fixing of Top Bar on Crickhit.com

Please provide the solution.

Hi there,

You also have sticky navigation enabled, do you want the topbar sticky on top of the sticky navigation?

I have off the sticky navigation bar, please now enabled the top bar sticky navigation.

Hi Parag,

Try adding this through Appearance > Customize > Additional CSS:

.top-bar.grid-container {
    position: sticky;
    top: 0;
    z-index: 10000;
}

This is not working, you can check the website

Hi there,

in your Customizer > Additional CSS you have this code:

add_filter( 'generate_logo', function( $logo ) {
    if ( ICL_LANGUAGE_CODE == 'HI' ) {
        return 'URL TO ENGLISH LOGO';
    }

    return $logo;
} );

Delete that code, as it is NOT CSS and should not be there.
Then the CSS below that will work.

This archived topic is closed to new replies.