CSS Questine

Out of context: Reply #2

  • Started
  • Last post
  • 19 Responses
  • moldero0

    adding:
    color:#000;

    already does it and I understand that if sometimes it doesnt work then i use !important

    but what if I have this on the parent CSS:

    a.button, a.comment-reply-link, #commentform #submit, .submit, input[type="submit"], input.button, button.button, #wrapper .woo-sc-button {
    display: inline-block;
    padding: .327em 1em;
    color: #ffffff !important;
    text-align: center;
    border-top:#555555 solid 1px !important;
    text-decoration: none;
    font-size: 12px;
    /* Make inputs the same size as normal text */
    font-family:'Arimo', arial, sans-serif;
    /* Make inputs use the correct typeface instead of the browser default */
    cursor: pointer;
    /* Inputs need pointers! */
    overflow: visible;
    width: auto;
    /* IE fix */
    line-height: 1.618em;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    font-weight: normal;
    text-transform: inherit;
    box-shadow: 0 0 0 0 #888888;
    -webkit-box-shadow: 0 0 0 0 #888888;
    -moz-box-shadow: 0 0 0 0 #888888;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    text-shadow: none;
    -webkit-appearance: caret;
    /* Remove input shadowing on iOS */
    -moz-appearance: caret;
    /* mobile firefox too! */
    background-color:#000000;
    filter: progid:DXImageTransform.Microsof... endColorstr='#111111') !important; /* for IE */
    background: -webkit-gradient(linear, left top, left bottom, from(#222222), to(#111111)) !important; /* for webkit browsers */
    background: -moz-linear-gradient(top, #222222, #111111) !important; /* for firefox 3.6+ */
    }

    and i want to kill all that shit through the child.css

View thread