• Hola. Una ayudita. En categoria de productos quiero en pc 4 filas. 3 en tablet. Y una en movil. En pc lo tengo ok. En movil con css ok. Pero en tablet me sale 1 igual que el movil. Como puedo hacerlo para 3 filas en tablet?

    • This topic was modified 2 years, 4 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try:

    @media (max-width: 768px) {
    .elementor-widget-wc-archive-products .products {
        grid-template-columns: repeat(1,1fr);
    } }
    
    @media (max-width: 1024px) {
    .elementor-widget-wc-archive-products .products {
        grid-template-columns: repeat(3,1fr);
    } }
    Thread Starter mercerianinot

    (@mercerianinot)

    Ok. Muchas gracias funcionando

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Css categorias woocomerce’ is closed to new replies.