Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
549 views
in Q2A Core by

Look at the widget its simple with no  gray lines ? Why i have also replaced the whole theme but still not working

Q2A version: 6.1
by
Without URL hard to say..
by
http://answerpk.com here is the URL

1 Answer

0 votes
by
selected by
 
Best answer

Check in stylesheet at around line no 1040.. do you have below line?

.qa-nav-cat-list-1 .qa-nav-cat-item{

border-bottom:1px dotted #ccc;

}

If not on line 1040 than anywhere? By defautl it should be there but if you have modified anything than add this line and it should add line.

 

>>>EDIT<<<

I believe you have modified something to hide question count in category list. I am not sure but that also could be the problem. In fact you can try below things and it should resolve your issue.

Try by changing above rule with this

.qa-nav-cat-list > .qa-nav-cat-item {

    border-bottom: 1px dotted #CCCCCC;

}

if still don't work than use below

.qa-nav-cat-list .qa-nav-cat-item {

    border-bottom: 1px dotted #CCCCCC;

}

But first one should work...

by
Thanks but the lines are available you can  check here
http://answerpk.com/qa-theme/Snow/qa-styles.css?1.6-beta-2
:-(
by
Okay updated answer.. check my edits..
by
One more thing.. your category UL doesn't applied dynamic lass for the first level UL. First level UL should have two class applied

<ul class="qa-nav-cat-list qa-nav-cat-list-1">

while in your case
<ul class="qa-nav-cat-list">

So check if you have modified anything and by mistake haven't remove that dynamic class. This all issue is happening because of that only
by
Thank u Sooo Much the second method helped :-)
by
Great! glad to help you.. :)
...