sowhatllc

Member

Forum Replies Created

  • In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41223

    Thanks, was working with Child Theme rather than Custom CSS. Not sure what changed with updates to theme and WordPress but working now.

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41220

    Anyone?

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41219

    Please provide code to cut and paste so we can get this resolved, the following did not solve the issue…

    /* format table */
    table {
    border-collapse: collapse;
    }
    table td {
    background: #DBCCAD !important;
    background: -webkit-linear-gradient(#DBCCAD,#DBCCAD);
    background: -moz-linear-gradient(#DBCCAD,#DBCCAD);
    background: -o-linear-gradient(#DBCCAD,#DBCCAD);
    background: linear-gradient(#DBCCAD,#DBCCAD);
    padding: 10px 5px;
    }
    table tr {
    border: 1px solid #DBCCAD;
    font-family: arial;
    padding: 2px 5px;
    }
    table th {
    background: #DBCCAD !important;
    background: -webkit-linear-gradient(#DBCCAD,#DBCCAD);
    background: -moz-linear-gradient(#DBCCAD,#DBCCAD);
    background: -o-linear-gradient(#DBCCAD,#DBCCAD);
    background: linear-gradient(#DBCCAD,#DBCCAD);
    padding: 10px 5px;
    }
    table tr {
    background: #DBCCAD !important;
    }
    table tr.alternate {
    background: #DBCCAD !important;
    }
    table#wp-calendar td,
    table#wp-calendar th,
    table#wp-calendar tr {
    border: none;
    }

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41217

    Have been banging my head on the keyboard with this for a couple more hours, but afraid I need a bit more handholding specifying the background color for <td>

    Tried adding the following to style.css with no results…

    table td,
    background: #DBCCAD !important;

    Then the following with disastrous results…

    table td,
    background: #DBCCAD !important;
    background: -webkit-linear-gradient(#DBCCAD,#DBCCAD);
    background: -moz-linear-gradient(#DBCCAD,#DBCCAD);
    background: -o-linear-gradient(#DBCCAD,#DBCCAD);
    background: linear-gradient(#DBCCAD,#DBCCAD);

    After attempting to carefully set up a Child Theme when the site was created, I have become very frustrated at the amount of time I have wasted on this and several other issues introduced following the upgrade of the Parent Theme. Will adding code to the Custom CSS prevent similar occurrences in the future?

    As always, your support is greatly appreciated.

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41215

    Problem still exists after adding code to Custom CSS.

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41213

    Problem still exists (in a variety of browsers, operating systems and devices) after adding !important to style declarations. Just to reiterate original post, additions to style.css in the Graphene Child Theme worked up until updating the Graphene Main Theme to version 1.9.2.

    /* format table */
    table {
    border-collapse: collapse;
    }
    table td,
    table th,
    table tr {
    border: 1px solid #DBCCAD;
    font-family: arial;
    padding: 2px 5px;
    }
    table th {
    background: #DBCCAD !important;
    background: -webkit-linear-gradient(#DBCCAD,#DBCCAD);
    background: -moz-linear-gradient(#DBCCAD,#DBCCAD);
    background: -o-linear-gradient(#DBCCAD,#DBCCAD);
    background: linear-gradient(#DBCCAD,#DBCCAD);
    padding: 10px 5px;
    }
    table tr {
    background: #DBCCAD !important;
    }
    table tr.alternate {
    background: #DBCCAD !important;
    }
    table#wp-calendar td,
    table#wp-calendar th,
    table#wp-calendar tr {
    border: none;
    }

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41211

    Problem still exists after changing ##dbccad to #dbccad.

    /* format table */
    table {
    border-collapse: collapse;
    }
    table td,
    table th,
    table tr {
    border: 1px solid #DBCCAD;
    font-family: arial;
    padding: 2px 5px;
    }
    table th {
    background: #DBCCAD;
    background: -webkit-linear-gradient(#DBCCAD,#DBCCAD);
    background: -moz-linear-gradient(#DBCCAD,#DBCCAD);
    background: -o-linear-gradient(#DBCCAD,#DBCCAD);
    background: linear-gradient(#DBCCAD,#DBCCAD);
    padding: 10px 5px;
    }
    table tr {
    background: #DBCCAD;
    }
    table tr.alternate {
    background: #DBCCAD;
    }
    table#wp-calendar td,
    table#wp-calendar th,
    table#wp-calendar tr {
    border: none;
    }

    In reply to: Table Background Colors (Following Upgrade to 1.9.2)

    #41209

    Tables on:

    1) http://upperamazon.org

    2) http://upperamazon.org/about-us/

    3) http://upperamazon.org/media

    Code added to child theme:

    /* format table */
    table {
    border-collapse: collapse;
    }
    table td,
    table th,
    table tr {
    border: 1px solid ##DBCCAD;
    font-family: arial;
    padding: 2px 5px;
    }
    table th {
    background: ##DBCCAD;
    background: -webkit-linear-gradient(##DBCCAD,##DBCCAD);
    background: -moz-linear-gradient(##DBCCAD,##DBCCAD);
    background: -o-linear-gradient(##DBCCAD,##DBCCAD);
    background: linear-gradient(##DBCCAD,##DBCCAD);
    padding: 10px 5px;
    }
    table tr {
    background: ##DBCCAD;
    }
    table tr.alternate {
    background: ##DBCCAD;
    }
    table#wp-calendar td,
    table#wp-calendar th,
    table#wp-calendar tr {
    border: none;
    }

Viewing 8 posts - 1 through 8 (of 8 total)