Comments Alexander Joo started the conversationJanuary 10, 2019 at 9:43pmHow do I control the categories navigation? Font size, and case ("Aa Bb") etc.? Currently it's all lowercase. 1,974Support repliedJanuary 13, 2019 at 3:20am#filters li a{ font-family: Roboto; line-height: 25px; font-weight: 300; font-style: normal; font-size: 15px;}change attributes you want and add the code to customize cssin portfolio-page.php change line 72 from<li><a href="#" data-filter=".<?php echo sanitize_title( $portfolio_cat->slug ); ?>"><?php echo sanitize_title( $portfolio_cat->name ); ?></a></li>to<li><a href="#" data-filter=".<?php echo sanitize_title( $portfolio_cat->slug ); ?>"><?php echo wp_kses_post( $portfolio_cat->name ); ?></a></li>Thank you. Clapat Support https://www.clapat.com/ Review Envato Item Support Policy Sign in to reply ...
How do I control the categories navigation?
Font size, and case ("Aa Bb") etc.? Currently it's all lowercase.
#filters li a{
font-family: Roboto;
line-height: 25px;
font-weight: 300;
font-style: normal;
font-size: 15px;
}
change attributes you want and add the code to customize css
in portfolio-page.php change line 72 from
<li><a href="#" data-filter=".<?php echo sanitize_title( $portfolio_cat->slug ); ?>"><?php echo sanitize_title( $portfolio_cat->name ); ?></a></li>
to
<li><a href="#" data-filter=".<?php echo sanitize_title( $portfolio_cat->slug ); ?>"><?php echo wp_kses_post( $portfolio_cat->name ); ?></a></li>
Thank you.
Clapat Support
https://www.clapat.com/
Review Envato Item Support Policy