-
AuthorPosts
-
January 31, 2023 at 9:26 pm #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
FranzFebruary 1, 2023 at 4:20 am #1396131Hi 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,
NikkoFebruary 1, 2023 at 6:15 am #1396147Thank 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
FranzFebruary 1, 2023 at 10:21 am #1396175Hi 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,
NikkoFebruary 1, 2023 at 1:05 pm #1396210Sorry Nikko
that fits so far well
now the distance is applied everywherebut if I want to apply the 50 px only on the cell phone
what is the codethanks and
kind regards
FranzFebruary 1, 2023 at 5:03 pm #1396247Hi 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,
NikkoFebruary 1, 2023 at 9:32 pm #1396294Thank you Nikko for your help
Now everything fits sueryou can close this request.
kind regards
Franz
February 2, 2023 at 4:35 am #1396324Hi Franz,
I’m glad that we could help you :)
Thanks for using Enfold and have a great day!Best regards,
Nikko -
AuthorPosts
- The topic ‘page without scrolling’ is closed to new replies.