Okay
  Public Ticket #2434702
WooCommerce product category description
Closed

Comments

  • thepixelmason started the conversation

    I'm looking to move the WooCommerce product category description that now appears above the product grid, to below the product grid and before the footer. Can you give me instructions on how to do this?

  •  8,884
    Tahir replied

    Hey thepixelmason ,

    Thanks for using Salient.

    Add this into the Custom CSS box located in your Salient Options panel (All custom css provided is tested in the Live Browser so it will work as intended . If you cant see any changes make sure there is no red cross in the Custom CSS Box as that syntax error would cause all css below it to not show up on the Frontend):

    @media only screen and (min-width: 1000px) {
        .woocommerce.archive .post-area.span_9 {
            display: flex;
            flex-direction: column-reverse;
        }
    }

    Thanks


    ThemeNectar Support Team 

  • thepixelmason replied

    Awesome. Thanks, Tahir!!!