I want to change the size font fo this page (http://www.fitnessgeeks.nl/fitness-kleding/) in the side bar just like the home (www.fitnessgeeks.nl). How can i fix this?
Hello dheerhuis,
If you want to increase the font size, you should use a bit of CSS code and place it in Theme panel->Custom CSS area.
The code is ->
.widget_categories a{
font-size:15px!important;
}
The result is here -> https://www.screencast.com/t/hh9rKq35
Thanks for the message!
Hello dheerhuis,
If you want to make these changes you should use the code below and place it in Theme panel->Custom CS area.
The code is here ->
.td_block_text_with_title .td_mod_wrap span{
color:green!important;
}
The result is here -> https://www.screencast.com/t/Ab18qeJuvDX
Thanks for the message!
If i use this code the side bar text gets green. That isnt what i want. I want to change the font size of the light grey text in the side bar from 13 to 11 on this page (http://www.fitnessgeeks.nl/fitness-kleding/). Just like the ligt grey text at the home (www.fitessgeeks.nl)
Hello dheerhuis,
If you want to make these changes, you should use the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td_block_text_with_title .td_mod_wrap p{
font-size: 11px!important;
}
.td_mod_wrap{
font-size:11px!important;
}
The result is here -> https://www.screencast.com/t/K0oPpdCFi
Thanks for the message!