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

    Hello together
    I have on this page link below:
    made several pages with pictures whole background.

    Now I have the following question
    when I display this page Link below:

    can the text be displayed further up, not so centered on the pc.

    Then I can scroll up and down on the PC.
    Can I turn this off, and that the socket is displayed exactly at the bottom ?

    Thanks in advance
    Kind regards
    Franz

    #1396131

    Hi Franz,

    I have added the following CSS codes:
    This code moves the content up:

    #my_section .container .content {
        vertical-align: baseline;
    }

    This code makes sure that the socket is displayed exactly at the bottom (applies to tablets, ipads and bigger devices)

    @media only screen and (min-width: 768px) { 
      #top #my_section {
        height: calc(100vh - 148px);
      }
    
      #top.logged-in #my_section {
        height: calc(100vh - 180px);
      }
    }

    This code makes sure that the socket is displayed exactly at the bottom (applies to bigger devices that are bigger than the tablet/ipad)

    @media only screen and (min-width: 981px) { 
      #top #my_section {
        height: calc(100vh - 114px);
      }
    
      #top.logged-in #my_section {
        height: calc(100vh - 146px);
      }
    }

    Please review your site.

    Best regards,
    Nikko

    #1396147

    Thank you Nikko

    This fits so great

    Which value do I have to change that it is about 50 px deeper on the hany

    thanks and
    kind regards
    Franz

    #1396175

    Hi Franz,

    Please try to add this CSS code:

    #my_section .av_textblock_section {
        margin-top: 50px;
    }

    Then just adjust the value as you see fit.

    Best regards,
    Nikko

    #1396210

    Sorry Nikko

    that fits so far well
    now the distance is applied everywhere

    but if I want to apply the 50 px only on the cell phone
    what is the code

    thanks and

    kind regards
    Franz

    #1396247

    Hi Franz,

    You can use this code to target only mobile devices:

    @media only screen and (max-width:767px) {
      #my_section .av_textblock_section {
        margin-top: 50px;
      }
    }

    Best regards,
    Nikko

    #1396294

    Thank you Nikko for your help
    Now everything fits suer

    you can close this request.

    kind regards

    Franz

    #1396324

    Hi Franz,

    I’m glad that we could help you :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘page without scrolling’ is closed to new replies.