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

Where to change the title title background color in the picture?

Thank you for the answers!

1 Answer

+2 votes
by
selected by
 
Best answer

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

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

.qa-template-question .qa-main-heading {
    background-color: red;
}

2.b. Or add this rule to the end of the file to change it all pages:

.qa-main-heading {
    background-color: red;
}

by
@pupi1985
Thank you, i will try.
by
@Pupi1985
I changed from h1 color setting


h1 {
    position: relative;
    margin: 0 0 5px;
    padding: 8px 52px 8px 20px;
    background: #000000;
    color: #fff;
    font-size: 1.4em;
    line-height: 1.35em;
}
by
What will code be for changing only background color of question content body (only question body except question title) in donut theme? Thank you.
by
Please, don't ask questions in comments. In fact, there is a feature for asking questions related to answers :)
...