Okay
  Public Ticket #1147930
Go-to-top button overlaps Thumb Toggle in Lightbox mode
Closed

Comments

  • radetiba started the conversation

    Hi,

    While populating and testing my site, I noticed the Go-To-Top button overlaps the Thumb Toggle button when in Lightbox view. It's especially problematic on a mobile device.

    I've built in a rough CSS workaround to at least stop the overlap:

    /** Stop Go-To-Top button overlapping thumb-grid launcher */
    a.go-to-top{ bottom: 5px;} /* was 0 (no px) */
    /** Mobile-specific */
    @media only screen and (max-width: 768px) {
        a.go-to-top{ bottom: 25px;} /* was 0 (no px) */
    }
    Just alerting you to the problem, as the Go-To-Top button should actually be hidden when in Lightbox Mode, as it serves no useful function here.

    Best,

    -R

  • [deleted] replied

    Hi radetiba,

    Thanks for reporting this. I will add this on our to-do list and we will make sure to add this fix on the next theme update.

    To fix this please add the code below to Custom CSS:

    .go-to-top {
    z-index: 1000 !important; }