Entry in global css does not work

I’m trying to make the following entry in Global CSS:

body[class*=‘layout-portfolio’] .x-breadcrumb-wrap {
overflow: hidden;
margin: 0;
padding: 16px 0;
font-size: 12px;
line-height: 1.4;
background-color: rgb(76,105,121);
}

analogous to the following case: https://theme.co/apex/forum/t/portofolio-images-label/30224

In the single portfolio page it works correctly. Do you have a solution? Thanks a lot, Martin

Hello Martin,

The code above will only take effect to the single portfolio pages.

If you want it to work on the entire site, update the code to:

body .x-breadcrumb-wrap {
    overflow: hidden;
    margin: 0;
    padding: 16px 0;
    font-size: 12px;
    line-height: 1.4;
    background-color: rgb(76,105,121);
}

Hope this helps.

Thanks, it helps…

You’re welcome, Martin.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.