Hello,
You can't find a specific view to manage ONLY Sub- categores listing because, main category OR sub-category are manage by the same file, more precisely by listing_div, or listing_list (depends from your category configuration display).
So in theory you can created an override view in order to change html tag h4 to h2, BUT that will modify the title size for ALL of your categories listing on your website...
Maybe that can be a problem, so I suggest to use Css code to only customize THIS specific page titles !
My idea is that you want have a bigger typo size, right ?
So this kind of code can be your solution :
div#hikashop_category_information_menu_261 div#category_panel_261 font {
font-size: 16px;
}
Note : "
div#hikashop_category_information_menu_261" target your category listing and "
category_panel_261" your current listing, if later you create an other listing it won't be affect by the Css code.
For customize your page via your
Css,
have a look on this link,
here
.
Note : I advice you to edit your Css file at the end, later that will be easier to find and correct it.
To learn more about Css code and their properties, I invite you to read this source,
here
.
Hope that will help you.
Regards,