Forum Replies Created

Viewing 1 replies (of 1 total)
  • This code is not working for me, I tried it in the custom css section and in my child theme style.css, any help would be much appreciated.

    I just set up the child theme with the customizr child theme plugin, and I have a few basic customizations so far:

    /*
    Theme Name: Customizr Child
    Theme URI: https://themesandco.com/customizr
    Description: A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr’s core code. In order to keep your code as clean and flexible as possible, try to use Customizr’s hooks API for your customizations. Do something awesome and have fun !
    Author: Nicolas Guillaume (nikeo)
    Author URI: https://themesandco.com
    Template: customizr
    Version: 1.0.0
    */

    /* Your awesome customizations start right here !
    ————————————————————– */

    /*Menu */
    /********/

    /* Adjust Menu colors – Normal */
    .navbar .nav > li > a, .navbar .nav > li > a:first-letter {
    color: lightgray;
    text-shadow: none;
    }

    /* menu color hover background */
    .navbar .nav > li > a:focus,
    .navbar .nav > li > a:hover {
    background-color: #0014FF;
    color: #0088cc;
    text-decoration: none;
    }

    /*navbar background color and shadow*/
    .navbar .navbar-inner {
    -webkit-box-shadow: 0px 0px 0px;
    -moz-box-shadow: 0px 0px 0px;
    box-shadow: 0px 0px 0px;
    background:none
    }

    /*header */
    /********/

    /*header background color*/
    header.tc-header {
    min-height: 45px;
    background: #007db7;
    border-bottom: 10px solid #007db7;
    border-top: 5px solid #007db7;
    }

Viewing 1 replies (of 1 total)