XF 1.4 .categoryStrip height

kankan

Well-known member
Hello
I am settings banner for Category title and have several question :

1. In style properties, height is defined by default to 40px for all category block title.
In my code below, how can i set it for a specific category node/strip ?

2. How do i disable the category text title for the specific category node/strip ?

Thank you for your support :

My code in extra.css :

Code:
/* Banner ROG*/

.node.category.node_35 .categoryStrip {
background: url("http://www.forum-des-portables-asus.fr/forums/images/base.jpg")

}

Rendering :

capture-32.webp
 
Code:
.node.category.node_1 .categoryStrip
{
    height: 100px;
}

.node.category.node_1 .categoryStrip .categoryText
{
    display: none;
}

Change the ID and height to suit.
 
I presume here :
<a href="{xen:link categories, $category}" data-description="{xen:if @uix_categoryStrip_descriptionTooltips, '#nodeDescription-{$category.node_id}'}">{$category.title}</a>

don't know how to do that. will look deeper.
Thanks for your support.
 
Top Bottom