Viewing 2 replies - 1 through 2 (of 2 total)
  • This CSS seems to be overriding it:

    .ml-cs-title-v {
        display: block !important;
        margin: 0 auto;
        padding: 1em;
    }

    from this file:
    https://www.stuartjnelson.com/wp-content/themes/mater-ana/functions/cstacker/css/cstacker.css.php

    Change the order of file.css being loaded, the one overwritting must come after. Depending on how you load that file, if it got there by add_action() to wp_head , then just change the number of the 3rd parameter, default is 10, more number will be loaded later.

    In case, you can’t change the order of that file, or if this would be just for a couple of places, then just give it more weight by putting in more class or even tie it with the element.

    .ml-content .ml-cs-title-v {
        padding: 0.5em;
    }

    or

    h1.ml-cs-title-v {
        padding: 0.5em;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS Over ride isnt working?’ is closed to new replies.