nicht alle KAtegorien in der linken Sidebar anzeigen

Hallo Nadja

vielleicht reicht dir das ja schon bzw. ausprobieren, einfach in die siderbar.less einfügen ( es wird auch nur die aktive Kategorie angezeigt, alle anderen werden ausgeblendet ).

@media screen and (min-width: @tabletViewportWidth){
	.sidebar-main {
		padding-top:.5rem;
	
		.sidebar--categories-navigation {
			margin-bottom: 1.25rem;
			box-shadow: 0 0 0 rgba(0,0,0,0.05);
			background-color: #f6f6f6;
			border-color: #555;
			border-style: solid;
			border-width: 1px 0 2px;
			list-style-type: none;
			margin: 0rem 0rem .625rem 0rem;
			padding: 1.875rem .625rem .625rem .625rem;
			border-radius: 5px;
	
			.sidebar--navigation .navigation--entry{
				display:none;

				&.is--active {
					display:block;
					border: none;

					.navigation--entry {
						display:block;
					}
				}
			}
		}
	}
}

@media screen and (min-width: @desktopViewportWidth){

	.sidebar-main {
		padding-top: .5rem;
		display: block;
	}

    .is--ctl-detail{
        .sidebar-main{
            display: block;
        }
    }

    .sidebar-main{
        .is--ctl-detail & {
            & + .content--wrapper {
                .unitize(margin-left, 260);
            }
        }
    }
}

VG Zeljko

1 „Gefällt mir“