Disabling css

i have some special effects added to the header (navigation inline), but i dont want that to be on the footer, how can i disable it from the footer only. Thanks!

Hi Grant,

Thanks for writing in! You can target your CSS rules to the header area only by adding the .x-masthead selector before each of your custom CSS rules.

For example, let’s consider the following general CSS rules.

.menu-item .x-anchor-text-primary {
    color: red !important;
}

You can re-target it only for the header area by adding the following CSS selector in-front of your existing CSS rule.

.x-masthead .menu-item .x-anchor-text-primary {
    color: red !important;
}

Hope that helps.

Thanks! I achieved it through a different way.

You are most welcome!

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