Need to change a detail in the header

hello guys

I have a quick question. Is it possible to have the same shadow effect of the top bar (nr 1) also underneath the logo bar nr 2

is that possible?

thanks a lot
cheers
isabella

Hi Isabella,

To resolve this issue, please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.x-logobar-inner .x-brand {
    position: relative;
}

.x-logobar-inner .x-brand:after {
    content: "";
    display: block;
    position: absolute;
    left: -100%;
    bottom: 0;
    width: 1000em;
    background-color: rgba(0,0,0,0.025) !important;
    box-shadow: 0 2px 0 0 rgba(255,255,255,0.715) !important;
    border-bottom: 1px solid rgba(0,0,0,0.15) !important;
}

We would loved to know if this has work for you. Thank you.

thanks a lot. It worked but I changed it to 2 px instead of 1. thank you so much
cheers :slight_smile:

You’re welcome Isabella!
We’re glad we were able to help you out.

1 Like

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