• Hello Weblizar Team!

    Is it possible to hide/remove the call out area ?

    Thanks for your Support!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hey there CazMiX,

    How are you doing today?

    I’m not sure if there is an option in the theme settings that allows you to do this (couldn’t find one) you can do this with some custom CSS. Please try adding the following to Appearance -> Theme Options -> General Options -> Custom CSS

    .enigma_callout_area {
        display: none;
    }

    This should remove the call out area.

    Hope this helps and have a nice weekend!

    Cheers,
    Bojan

    Thread Starter CazMiX

    (@cazmix)

    Hey Bojan,

    i’m doing great, thank you!

    Thank you for the solution, worked perfectly.
    Just to ask, is it possible to hide just one of the call out area bars?

    Cheers,
    Carsten

    Hey again Carsten,

    Not really sure what you mean, can you please post link to your site and explain which part you’re trying to remove and I’ll be more then happy to try to help you with that ??

    Cheers,
    Bojan

    Thread Starter CazMiX

    (@cazmix)

    Hi Bojan,

    Here is the link https://www.krl-media.de/

    if you scroll down the page, you can see two “callout areas”. The first one is below the slider and the second is below the “our portfolo” section.

    Was i asked for is a way to just remove one of these ??

    Thank you in advance,

    Carsten

    Hey Carsten,

    You can do that by using nth child selector and removing the divs by their position. Please note that this will not work properly if you somehow add more divs in your home page.

    To remove the first one replace the code above with this one:

    .home #wrapper div:nth-child(4) {
        display: none;
    }

    To remove the second one replace the code wit this one instead:

    .home #wrapper div:nth-child(8) {
        display: none;
    }

    Hope this helps ??

    Cheers,
    Bojan

    Hi,

    You are using enigma premium theme. Please raise your issue on our premium theme support forum.

    Here we only give supports to free themes.

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Hide/remove Call out Area’ is closed to new replies.