Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #420326

    Hi,
    I have a color section (with a fullscreen background image).

    How can I reduce the bottom and top space between elements inside this color section ?
    I want to have no space between a few images.
    Thanks

    #420347

    Hi ppi37!

    Thank you for using our theme.

    Can you give us a link to this page please? Then we can give you the correct CSS. You can post it here as a private reply.

    Regards,
    Günter

    #420348
    This reply has been marked as private.
    #420396

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .page-id-104 #av_section_1 .avia-image-container.avia-align-left {
      margin-top: 0!important;
    }

    Best regards,
    Yigit

    #420826

    Hi Yigit,
    Thanks it is ok.

    But one more customization please.
    How can I reduce the margin-top of all the content in the color section ?
    Because of this, the content inside the color section exceeds height

    thanks a lot

    #420830

    Hi!

    Please add following code to Quick CSS as well

    .page-id-104 #av_section_1 .content { padding-top: 0; }

    Regards,
    Yigit

    #420857

    Hi Yigit,
    Thanks, that’s what I wanted.

    The display on a computer screen corresponds to what I want.
    But on a smarphone (iphone 6+), this is not good (with a fullscreen background image in a color section with content)

    But that’s another problem …
    I will now look for a solution for this problem.

    Thank you again

    #421452

    Hi!

    You can change the code to following one to apply only on desktops

    @media only screen and (min-width: 768px) {
    .page-id-104 #av_section_1 .content { padding-top: 0; }}

    Cheers!
    Yigit

    #421504
    This reply has been marked as private.
    #421511

    Hey!

    Please add following code to Quick CSS and adjust as needed

    .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption {
      padding-top: 50px;
    }

    Best regards,
    Yigit

    #421823

    Hi Yigit,
    Thanks.
    It’s OK with this QUICK CSS

    .page-id-104 #av_section_1 .avia-image-container.avia-align-left {
    margin-top: 0!important;
    }
    .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption {
    padding-top: 50px;
    }

    I have to reply the first line to all the pages.
    It is possible to have a CSS for all pages ?
    or do I have to reply with page ID ?

    Thanks

    #421899

    Hey!

    Can you please post links to your example pages so we can provide you an accurate code? You can give you color section elements a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
    and change the code to following one

    #your-custom-id .avia-image-container.avia-align-left {
    margin-top: 0!important;
    }

    Cheers!
    Yigit

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