Forum Replies Created
-
In reply to: Table Background Colors (Following Upgrade to 1.9.2)
December 12, 2013 at 2:34 pm #41223Thanks, 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)
December 9, 2013 at 5:12 am #41220Anyone?
In reply to: Table Background Colors (Following Upgrade to 1.9.2)
December 5, 2013 at 3:48 am #41219Please 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)
December 4, 2013 at 6:20 pm #41217Have 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)
December 4, 2013 at 2:08 pm #41215Problem still exists after adding code to Custom CSS.
In reply to: Table Background Colors (Following Upgrade to 1.9.2)
December 4, 2013 at 12:59 pm #41213Problem still exists (in a variety of browsers, operating systems and devices) after adding
!importantto 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)
December 4, 2013 at 5:05 am #41211Problem still exists after changing
##dbccadto#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)
December 2, 2013 at 11:07 pm #41209Tables on:
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)
