Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
698 views
in Q2A Core by

I added this tag:

.qa-q-item-title a {
 font-size: 23px;
}

but it chaned only the font size of the questions in home page and not in the question page.

 

 

1 Answer

0 votes
by
selected by
 
Best answer
hey the style of question title on both question page and home page are entirely different.

In home page :

.qa-q-item-title a {
 font-size: 23px;
}

But in question page You need to write a new css in you theme's qa-style.css :

h1  {
 font-size: 23px;
}

hope this will help you
by
Tx for your answers.

Tried it. didn't work.

Any other suggestion?
by
please put important to your style. That is
h1  {
 font-size: 23px !important;
}

still not working
will I get you site's URL ?
by
Worked like magic! TX
by
good news :)
...