Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #286356

    I have 3 columns using icon boxes setup under a slider, followed by color section, a full width line and then a further 3 columns.

    However I am getting a large space between the first section of the page and the start of the next color section. I have padding set to no padding but still I get the space – how can I reduce the space (height) between these 2 sections?

    #286383

    Hi Andrew,

    Can you post the link to the website please?

    Regards,
    Josue

    #286519
    #286618

    Hey!

    Put the following code into custom.css or Enfold->Quick CSS:

    
    .page-id-734 #main .content{
    padding-bottom: 0px !important;
    }
    

    Best regards,
    Günter

    #286686

    That has not made any difference I am afraid?

    I have tried both in Firefox and safari.

    #286691

    Correction. I just tried in the the theme options CSS and it reduces the spacing a little but there is still too much blank space. Also it has affected the bottom of the page as well, meaning that the 3 icon boxes at the base of the page now bleed into the socket.

    #286790

    Hi!

    Please try following code instead

    .page-id-734 #main .content{
    padding-top: 0px !important;
    }

    Cheers!
    Yigit

    #286817

    That acts of the page but taking the spacing out of the top between the slider and the icon blocks. It’s the bottom spacing I need to reduce.

    I tried changing the code to padding-bottom but then it has no effect.

    #286821

    Hi!

    Try adding padding-bottom: 0 to the code too:

    .page-id-734 #main .content {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    }

    Regards,
    Josue

    #286843

    Still no effect on the space underneath the icon boxes

    http://marqueeroofrollers.co.uk/homepage/

    #286855

    This will do it:

    .page-id-734 #av_section_1 .hr {
        margin-top: 0 !important;
    }
    .page-id-734 #av_section_1 .content {
        padding-top: 0 !important;
    }
    #286884

    I wish it would but still seeing too much space under the icon boxes.

    #286903

    Final code should be:

    .page-id-734 #av_section_1 .hr {
        margin-top: 0 !important;
    }
    .page-id-734 #av_section_1 .content {
        padding-top: 0 !important;
    }
    .page-id-734 #after_layer_slider_1 .content {
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }
    

    Result:

    Regards,
    Josue

    #286904

    That’s done it. I am going to buy another license just because I feel like I should now.
    Awesome support. Thank you so much.

    #286906

    You are welcome Andrew, always glad to help :)

    Regards,
    Josue

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