Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1492058

    Dear Support,

    I tried to change the “Scroll to the Top” Element using some threads in this Forum. I wanted to achieve that the arrow inside the box is more bold and that the element itself is a little bigger. Doing that the arrow is not centered anymore. Also the element for some reason gets cut when scrolling on an iPhone. It’s only visible on mobile once you scroll up. It should always be visible. Please advise.

    • This topic was modified 1 day, 7 hours ago by ti2media.
    #1492067

    Hey ti2media,

    Please try this CSS as well:

    #scroll-top-link.avia-svg-icon svg:first-child {
      margin-top: 7px;
    }

    Best regards,
    Rikard

    #1492120

    Dear Rikard,

    thanks for your support. This only solved the first issue of the element not being in the center. The whole as to bee seen on the screenshot is still not visible on mobile when scrolling down.

    Please advise.

    Regards
    Stefan

    #1492128

    Hi,

    I’m guessing that the white area in your screenshot is part of your phone, not the browser. It’s not present using Chrome on Android for example. If you should need further help, then please let us know how to reproduce the results in your screenshot.

    Best regards,
    Rikard

    #1492131

    Hi Rikard,

    it is the latest iPhone 17 pro using Safari 26.1.
    It only appears when scrolling down on the website.

    Thanks for advise.

    Regards
    Stefan

    #1492133

    have a look if you have already the svg usage of those standard icons. – the up-open icon is already a bold one – but you can give the svg a stroke:

    #scroll-top-link svg {
      margin-top: 3px !important;
      stroke: 8;
      width: 40px !important;
      height: 40px !important;
    }

    see :

    btw: on mobile ( better on smaller screens it is set to display: none

    @media only screen and (max-width: 767px) {
      .responsive #scroll-top-link {
        display: block;
      }
    }

    The reason for this is that many people know that double-tapping the top of the screen scrolls the window upwards.

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