Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
828 views
in Themes by

Where can I change the question explanation color?

1 Answer

+2 votes
by
selected by
 
Best answer

1. Edit file qa-theme/SnowFlat/qa-styles.css

2. Add this rule to the end of the file to change it only in the question template:

.qa-q-view-content {
    color: red;
}

By the way, this is just CSS. You can easily learn how to make these changes with some reading (for example, http://www.cssbasics.com).

by
@pupi1985

Thank you very much, I will also check the site of cssbasics.com.
I will also install and use your other add-ons. I will also make payments to you when I make money with adsense ads.
You are good!
by
@pupi1985
Hello my teacher
They are there, but there is no explanation color, there is no question explanation color among them.
How can I do it?




.qa-q-view-content table, .qa-a-item-content table, .qa-c-item-content table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ecf0f1;
    font-size: 14px;
    margin-bottom: 20px;
}
.qa-q-view-content tr:hover, .qa-a-item-content tr:hover, .qa-c-item-content tr:hover {
    background-color: #ecf0f1;
}
.qa-q-view-content th, .qa-a-item-content th, .qa-c-item-content th,
.qa-q-view-content td, .qa-a-item-content td, .qa-c-item-content td {
    padding: 10px;
    border-width: 1px;
    border-style: solid;
    text-align: left;
}
.qa-q-view-content th, .qa-a-item-content th, .qa-c-item-content th {
    background-color: #bdc3c7;
    border-color: #95a5a6;
    font-weight: 700;
}
.qa-q-view-content td, .qa-a-item-content td, .qa-c-item-content td {
    border-color: #ecf0f1;
}
.qa-q-view-content ul, .qa-a-item-content ul, .qa-c-item-content ul,
.qa-q-view-content ol, .qa-a-item-content ol, .qa-c-item-content ol {
    margin-left: 20px;
    padding: 0;
by
@ Pupi1985
I corrected it by changing my teacher. #000000


body {
    background: #fff9f9 !important;
    position: relative;
    font-family: "Gravity", "Helvetica", "Arial", "FreeSans", sans-serif;
    color: #000000;
...