• Hi, I wish to decrease the padding in mobile view of the wishlist header. It does not look good at the moment as there is so much space before and after the header. Please see the attached picture.

    also would love to know if I would like it to be hidden, what to do.

    Image: https://ibb.co/d6gZJw4

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    Hi there,
    thanks for contacting us!

    To decrease the wishlist title margin in mobile view, please add the following CSS in Appearance > Customize > Additional CSS:

    @media only screen and (max-width: 768px) {
    .wishlist-title-container .wishlist-title {
    margin: 0 !important;
    }
    }

    Or to hide it:

    @media only screen and (max-width: 768px) {
    .wishlist-title-container {
    display: none !important;
    }
    }

    Check it out and tell us if it works well for you, please.

    Best regards.

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.