Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #235267
    kenm
    Participant

    I’m having trouble finding a way to display the content in my sidebar before my primary content when in mobile mode. I found a few css snippets but they don’t seem to work on this theme. Any suggestions?

    ken
    site: nlft.org

    #235291
    Skandha
    Participant

    @kenm: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #main {
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: wrap;
    	    flex-wrap: wrap;
    }
    #primary {
    	-webkit-box-ordinal-group: 3;
    	    -ms-flex-order: 2;
    	        order: 2;
    	margin: 0 auto;
    }
    #secondary {
    	-webkit-box-ordinal-group: 2;
    	    -ms-flex-order: 1;
    	        order: 1;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #235376
    kenm
    Participant

    Awesome! Thanks very much.
    kenm

    #235396
    Skandha
    Participant

    @kenm: Hello Kenm, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-box/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Display main sidebar before posts in mobile’ is closed to new replies.