mike wallace
5 years ago
How can I make the product description panel flexible? My description goes out through the panel and has the border runnening through the text.
natani
5 years ago
Hi. Please contact in order support page https://marketplace.abantecart.com/order-support
mike wallace
6 years ago
Hi how do I cahane the colour of the text links in the footer?
natani
6 years ago
Hello.
Most of the regular links color are controlled in the Admin panel -> Extensions-> Foxy -> Colors -> Main Link color feature. However you can add any specifics with CSS in Admin panel -> Extensions-> Foxy -> Quick CSS

Have a nice day

Carolyn Jewel
7 years ago
Hello. Is there a way to remove "Model" From the product page? I am not selling anything with a model number.
Thank you.
natani
7 years ago
Helo, Carolyn.
If your products have not model entered in admin it will not show

Have a nice day.
Jim Docherty
7 years ago
Absolutely love this theme! (1.42 installed)

Is there a way to prevent certain blocks from running on responsive mode? In other words, we have blocks running in the left column that we don't want to show on mobile devices. Is this possible?
natani
7 years ago
Hello. You can control this with small css tricks which can be added into the Quick Css section in your Foxy extension page.
@media (max-width: 780px) {
#blockid {
display: none;
}

.blockclass {
display: none;
}

}


Have a nice day

Jim Docherty
7 years ago
That should work nicely. Thank you very much!