Instead of Top Categories, Can it be all categories?

QuestionsCategory: QuestionsInstead of Top Categories, Can it be all categories?
Natasha Dickey asked 5 years ago

I have another quesetion about the Navigation Menu under the Blog slider Widget in the Hello Boho theme. 
It says Top Categories: Then I list 3 of my categories
I would really like it to just be Categories and then display all 5 of my categories. But when I try to do this, the categories don’t all fit on one line and it doesn’t look right. (screenshot included)
Is there a way I can make it all be on the same line and look good?
TIA

Attachments
1 Answers
Jennifer Staff answered 5 years ago

On line 1547 you will find
 
.blog-slider .widget_nav_menu li a {
font-size: 3.0rem;
color: #fff;
}
 
Change it to this for 2.0rem or 20px.  Or whichever size you want.
 
.blog-slider .widget_nav_menu li a {
font-size: 2.0rem;
color: #fff;
}
 
Then on line 1531 add a line height to pull up the widget title.
 
.blog-slider .widget_nav_menu .widget-title {
line-height: 1;
 
Let me know if you have any issues.