Site logo

Archived topic

Amazinf menu in the footer e-commerce

36 replies · Started by Jose on November 7, 2020

Viewing posts 31–37 of 37

You can change the text color using CSS:

.mobile-navigation figcaption a {
    color: #fff;
}

But you cannot change the color of a png image with CSS - you would need to change the color of the actual image.

How can disable it in tablets devices?

I have tried to change the CSS to @media(max-width: 500px) but it appears in the tablets footer.

Try this CSS:

@media(min-width: 500px) {
  .mobile-navigation {
    display: none !important;
  }
}

Perfect, thanks!

You're welcome

Hi again,

I have install the cookies in the web, and in mobile devices I can't accept it because they are behind this footer, couuld you help me to give more important to the cookies banner?

Regards,

Can you raise a new topic where you can share a link to the site, as this one is resolved and all Private Information has been removed.

This archived topic is closed to new replies.