Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1010592

    I found around a dozen threads inquiring about the Negative whitespace function not working, and in every case, the Enfold support team gave them an effective solution for their specific issue, however, the main question was not addressed: Is that function (Negative whitespace value used for removing undesited empty space) still available, or was it removed from Enfold’s more recent versions? Please answer that, i would really like to know, since there are a lot of places I’ve used it in the past, and if it’s gone I’ll have to solve each of the cases one by one.

    Now, a particular Issue. In the example I’m sending you as private content, you’ll see a gray area for the breadcrumb. I need it to be significantly smaller, and I can’t find a way to reduce the empty space below. Any ideas?

    #1010706

    Hey hectorfosado,

    No it was not removed, negative margin is done via general CSS and is not theme specific.

    Please try this in Quick CSS to make the breadcrumbs section smaller:

    #av_section_3 {
        min-height: 0 !important;
    }

    Best regards,
    Rikard

    #1010792

    Thank you, you solved my problem for the breadcrumb :)

    However, in this image I’m showing you exactly which function I am asking about: The Separator/Whitespace used to remove all these spaces by using negative numbers.

    View post on imgur.com


    This does not work anymore, does it?

    #1011066

    Hi,

    Thanks for the screenshot, where can we see the actual element on your site?

    Best regards,
    Rikard

    #1130550

    Hello again. This issue persists… sometimes the negative whitespace works and sometimes it doesn’t here are two examples (view private content)

    I wish it was as simply adding the negative whitespace but it isn’t, is it?

    #1130677

    Hi,

    Negative margins doesn’t always work, but you can try this to remove the spaces on the page you linked to:

    .page-id-168 #after_full_slider_1, .page-id-168 #after_full_slider_2, .page-id-168 #after_full_slider_3 {
      display:none;
    }

    Best regards,
    Rikard

    #1130785

    Thanks for the reply, Rikard. I applied your fix and the space between the two sliders disappeared, but this seems to kill anything that I put between them as a separator. What I need is to be able to CONTROL how far apart those elements are. Before the fix, it was like twice the separation I want and after it was zero separation plus ellimination of whichever additional element i put there. How do I control such separation?

    #1130850

    Hi,

    Thanks for the clarification, please try this CSS instead:

    .content {
        padding-top: 0;
        padding-bottom: 0;
    }

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.