• Resolved WPjen

    (@wpjen)


    Hello. Is there any way to organise the view of my front page on mobile view, for example i would like my widgets to show first then page content

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Tom

    (@edge22)

    Hi there,

    Absolutely! Are you using the right sidebar, left sidebar or both?

    Thread Starter WPjen

    (@wpjen)

    Hi. Just the right side, thanks

    Theme Author Tom

    (@edge22)

    Give this CSS a try:

    @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;
     	}
    
    	#right-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;
    	}
    }
    Thread Starter WPjen

    (@wpjen)

    thankyou 🙂

    Theme Author Tom

    (@edge22)

    You’re welcome 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Mobile theme’ is closed to new replies.