• Hola! Me gusta mucho el tema, estoy modificando una tienda y tengo un problema en la página de producto individual en móbiles.

    Los atributos de los productos variables de ven desproporcionados y no encuentro la forma de adaptar el tama?o. El desplegable de “Talle” me queda muy corrido a la izquierda, ?Hay manera de modificar la ubicación o el tama?o? Dejo una imagen para que se pueda ver. Lo mismo me ocurre con el desplegable de cantidad de productos que está por encima del botón “a?adir al carrito”.

    https://prnt.sc/1dk1krq

    Desde ya muchas gracias

Viewing 1 replies (of 1 total)
  • Francesco Grasso

    (@francgrasso)

    YITH Support Representative

    Hi there,
    thanks for using our theme and for the compliments ??
    You can achieve your goal with this snippet of Additional CSS (we will include it also in the upcoming release of the theme)

    @media (max-width: 768px) {
        .single-product div.product .summary.entry-summary form.variations_form table.variations tr>td .select2-container {
            max-width: calc(100% - 60px);
        }
    
        .single-product div.product .summary.entry-summary form.variations_form table.variations tr>td {
            display: block;
            width: 100%;
        }
    
        .single-product div.product .summary.entry-summary form.variations_form table.variations tr>td.label {
            padding-bottom: 10px;
        }
    
        .select2-dropdown.select2-dropdown--below, .selectBox-dropdown-menu.select2-dropdown--below {
            top: 15px;
        }
    }

    this will fix everything for the mobile layout.
    I hope you will appreciate it ??

Viewing 1 replies (of 1 total)
  • The topic ‘Problema con productos variables’ is closed to new replies.