Jump to content
thirty bees forum
  • 0

Block Categories Title Change


Question

Posted

I have enabled the Block Categories module for the LeftColumn, but it's title shows as the currently selected category.

Is it possible to change this so it always says 'Categories' ?

 

 

4 answers to this question

Recommended Posts

  • 0
Posted

You would need to change the blockcategories.tpl

<h4 class="title_block">{if isset($currentCategory)}{$currentCategory->name|escape}{else}{l s='Categories' mod='blockcategories'}{/if}</h4>

to

<h4 class="title_block">{l s='Categories' mod='blockcategories'}</h4>

 

  • Like 2
  • 0
Posted

That worked - thank you very much.

Is it also possible to increase the font size of each category or make it bold so they stand out a little more ?

  • 0
Posted

You would need to to this with css:

#categories_block_left ul li {
	font-size: 30px;
}

Probably its easiest if you add this to categories.css

Or alternative you add to the tpl:

<style>
#categories_block_left ul li {
	font-size: 30px;
}
</style>

 

  • Like 2

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...