I am working with alimenticiasdelplata.com.uy and they add a list of collections but it is not working anymore, it won´t send them anywhere when you press the collection image. We are using DAWN.
Please help
I am working with alimenticiasdelplata.com.uy and they add a list of collections but it is not working anymore, it won´t send them anywhere when you press the collection image. We are using DAWN.
Please help
Hello @blancavaldes , In your base.css file, there is one CSS that causes the reason of not getting links of the collections list. See the screenshot below.
See, you have to remove this CSS for this section only if you prefer, and then that CSS is used for the other sections put custom CSS for it.
Remove or comment on the CSS below from base.css.
a.full-unstyled-link {
display: none !important; /* remove or comment this code to show links in base.css */
}
See the output below.
If you don’t want to see your collection name at the bottom of this list then put CSS of opacity: 0; in it. please check the code below.
a.full-unstyled-link {
display: none !important; /* remove or comment this code to show links in base.css */
opacity: 0; /* add this CSS */
}
See the output below.
If I managed to help you then, don’t forget to Like it and Mark it as a Solution!
Feel free to reach out if you have any questions or need assistance.
Best Regards,
Darshan.
Thank you very much. Perfect solution.