[Support request] Up the wigdet in mobile display

Home Forums Support [Support request] Up the wigdet in mobile display

Home Forums Support Up the wigdet in mobile display

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #572706
    ASCELCRE

    Hi, there is a novice. I have the widget on the left, with a woocommerce search engine. In the computer view it looks good, but when you put the mobile view, it appears at the end of the screen. Since it is a search engine, I need it to appear at the beginning. Is there any option that I have not seen, without touching code?

    #572789
    Leo
    Staff
    Customer Support

    Hi there,

    Give this CSS a shot:

    @media (max-width: 768px) {
    	.site-content {
    		display: -webkit-box;
    		display: -moz-box;
    		display: -ms-flexbox;
    		display: -webkit-flex;
    		display: flex;
    		-webkit-flex-flow: row wrap;
    		flex-flow: row wrap;
     	}
        
    	#left-sidebar {
    		-webkit-box-ordinal-group: 1;
    		-moz-box-ordinal-group: 1;
    		-ms-flex-order: 1;
    		-webkit-order: 1;
    		order: 1;
    	}
        
    	.content-area {
    		-webkit-box-ordinal-group: 2;  
    		-moz-box-ordinal-group: 2;     
    		-ms-flex-order: 2;     
    		-webkit-order: 2;  
    		order: 2;
    	}
    }

    Adding CSS: https://docs.generatepress.com/article/adding-css/

    Let me know.

    #573174
    ASCELCRE

    It works perfectly, really thankfull!
    Now I hava anothe problem šŸ™ I canĀ“t take off the phrase of “At this time there is no stock of this product nor is it available.” of woocomerce, and I canĀ“t find the problem. I touch every bottom about stock. Do you know how erase it? Thank you again.

    #573200
    David
    Staff
    Customer Support

    Hi, couple of questions,

    Are you using woocommerce multilingual?
    Is this displaying on variable products?

    David

    #573227
    ASCELCRE

    This is the version of de woocommerce VersiĆ³n de WP: 4.9.5. I am not sure if this is multilingual. The product where I am trying is variable product. Thank you

    #573235
    David
    Staff
    Customer Support

    OK can you check you have a price in each of the variations?

    #574103
    ASCELCRE

    Sorry, I donĀ“t put any price because I am using it like a catalogue. There is no price, no cart, no purchase button. Thank you.

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