Using the [product id=”3825″] shortcode to display one product on a page, inside of an element (1/3 column). The product is getting shrunk to 1/4 of its size.
Looked at the CSS, and found that if I do this…
div .products .product {
width:100%;
}
(Changing the width from something like 25% it solves the issue here, but causes a bunch of downstream issues elsewhere.
Suggestions?
Thanks!
Hi spidercreations!
Use this instead.
.av_one_third .products li { width: 100% !important; }
Cheers!
Elliott
Thank you!
I could stare at Firebug for hours and not figure that out. Some are easy, some not so much.
Steve