colors not updating

I'm trying to change the color of the subheader background, the active and hover links for the main menu and top bar and when i goto theme options, colors, none of the settings that I changed are taking effect. 



Comments

  • Hi,
    are those settings save, or do they go back to the previous color?
    thanks
  • I save them and nothing changes on the webpage but in the theme option color settings the changed color appears. Example, look at the image below. I changed the subheader color settings but when you goto the website the change doesn't occur. 


    image
  • Please show me on screenshots which colors would you like to change and where.
  • The background color behind the main navigation menu. 
    The background color of the subheader where the page title and breadcrumbs are. image
  • I'm also trying to change the 'Sliding Top' colors and it won't change after making the changes and clicking save. Something is very wrong here. 
  • I do have a child theme setup maybe that's causing issues with the stylesheet?

    These are the setting for the child theme.

    functions.php

    /*
    Theme Name:  Betheme Child Theme
    Template:  betheme
    Version:  1.0.0
    Text Domain:  Betheme-child
    -------------------------------------------------------------- */ 

    <?php 
    add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
    function my_theme_enqueue_styles() { 
       wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' ); 
       } 
     ?>

    style.css

    /*
    Theme Name: Betheme Child Theme
    Template: betheme
    Version: 1.0.0
    Text Domain: Betheme-child
    -------------------------------------------------------------- */ 

    /* =Theme customization starts here
    ------------------------------------------------------- */




  • Please try this custom css
    #Top_bar .menu_wrapper {
    background:red !important;
    }
    #Top_bar #menu {
    background:transparent !important;
    }
    #Subheader {
    background-color: red !important;
    }
  • ok but why isn't this working from the theme options panel?
  • Maybe the browser cache is holding the css, try deleting it.
  • thats fine thanks
Sign In or Register to comment.