Hello,
I’m really satisfied user from NewsMag theme, because it is highly customisable theme, but I have a few issues I can’not fix up for now. Will be grateful if you give me some hints how to solve them.
1/ I want to EXCLUDE pages from search results and let just post to be searchable.
2/ How can to remove the dropdown menu in category page and to extent the horizontal list with subcategories to the right border? See this http://postimg.org/image/dyabg1orf/
3/ How can change the black color of some buttons in this theme, especially these shown here – http://postimg.org/image/qgfkl72qd/ , http://postimg.org/image/i6v727n1b/ , http://postimg.org/image/pc2omqd6v/
Thank you in advance
Hi
1. Please check this topic, Alin posted a solution here: https://forum.tagdiv.com/topic/search-box-3/
2. To remove the dropdown menu comment this lines: http://screencast.com/t/oztsJHIWQ then add this custom css in theme panel > custom css: http://screencast.com/t/hzPCY0e8zc – http://screencast.com/t/9l96f6O2Em95
.td-category-siblings{
width: 100%!important;
}
.td-pulldown-filter-display-option{
display: none;
}
3. You can change the buttons colors using custom css, by targeting the specific classes for each button:
– related article: http://screencast.com/t/LWbbqSu9fx
.td-related-title .td-cur-simple-item{
background-color: #B24747;
}
-current category: http://screencast.com/t/lfVjqV8k
.category .td-subcategory-header a.td-current-sub-category{
background-color: #CE1313;
}
.category .entry-title span{
background-color: #CE1313;
}
-header search button: http://screencast.com/t/DjnvlIdx
input[type=submit] {
background-color: #CC2323;
}
Let me know how it goes and provide more details if still need assistance on this.
Thanks!
Thank you very much, Andrei
First hint works well, there are no more pages in search results, second also works fine, in point 3 I have a problem with hover color, it still remains black in subcategory entries and in related titles.
Thanks for the fast response!
Nick
Hi
To change the subcategories color on hover use this css: http://screencast.com/t/UZCQHiFlq
.category .td-subcategory-header .td-category a:hover{
background-color: #D71313;
}
If you’re referring at related article you can use this css: http://screencast.com/t/gVxaQsuXB
.td_block_related_posts .td-post-category{
background-color: #B63232;
}
If this is not what you mean please provide a link and mentions the element’s color that you went to change.
Thanks!
Thanks, Andrei,
first one is the same I meant, it’s fixed now and pretty good result for full color styling of he site.
The second is a different, may be I didn’t explain it enough well. I mean that: http://postimg.org/image/5hh3dwd3d/ Actually the title “Related articles” and so on.
Sorry for the long thread.
Hi
For related article try this custom css: http://screencast.com/t/3SMcInjTJ
.td_block_related_posts .td-related-title .td-cur-simple-item{
background-color: #B63232;
}
Thanks!