Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #537213

    Hi

    On a mobile view when you are selecting a variable product, the label is crushed up to the left hand side and the drop down box is to the right of it.

    http://screencast.com/t/sXujju3s5

    It would look lots better if it was:

    Material Finish & Grade
    [ DROP DOWN BOX]

    Second selectable option
    [DROP DOWN BOX]

    Is this possible?

    #537339

    Hi richardelectrix!

    Please add following code to Quick CSS

    @media only screen and (max-width: 480px) {
    #top .variations td.label {
        width: 100%;
    }}

    Regards,
    Yigit

    #537571

    Hi

    I have tried that. It has made a slight change but it hasnt made the desired change of having

    LABEL
    [DROP DOWN]

    LABEL
    [DROP DOWN]

    #538725

    Hi!

    You can try this:

    @media only screen and (max-width: 480px) {
    #top .variations td.label, #top .variations td.value {
        width: 100%;
        float: none;
        clear: both;
        display: block;
    }
    }

    Regards,
    Ismael

    #539036

    Hi

    That works perfectly.

    The only thing now that I need is I need padding-top to only apply to the to the 2nd row onwards.

    I am using the code below – you can see I have tried to use nth-child but have commented it out as it doesnt work.

    @media only screen and (max-width: 480px) {
    #top .variations td.label, #top .variations td.value {
        width: 100%;
        float: none;
        clear: both;
        display: block;
    }
    
    /* #top .variations td:nth-child(1).label {
        padding-top: 0px;
    } */
    
    #top .variations td.label {
        padding-top: 20px;
    } 
    }

    Do you have any suggestions?

    #540927

    Hi!

    can you show us where exactly you need this padding please? otherwise we would need to guess … Use screenshots to make things clear for us please.

    Regards,
    Andy

    #540983
    #541198

    Hey!

    thanks for the screenshot. Use this code:

    #top .variations_form>table {
    margin-top: 0;
    }
    

    Best regards,
    Andy

    #541435

    Thanks it works perfectly

    #541569

    Hi!

    glad we could help. Let us know in a new ticket if you have some more questions related to the theme. We are happy to assist you.

    Regards,
    Andy

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.