• Resolved grafema

    (@grafema)


    hi, is it possible to change the position of the price div in mobile view and place it after its description?

Viewing 1 replies (of 1 total)
  • Plugin Support jaysupport

    (@jaysupport)

    Hi graf,

    This should be possible by adding a bit of your own custom CSS. With flex styling you can set the order of items within a flex container. For example:

    @media screen and (max-width: 600px) {
      .fdm-item-panel {
        display: flex;
        flex-direction: column;
      }
      .fdm-item-title {
        order: 1;
      }
      .fdm-item-content {
        order: 2;
      }
      .fdm-item-price-wrapper {
        order: 3;
      }
    }

    Just make sure to change the media query to the size screen that you actually want for mobile.

    • This reply was modified 2 years, 5 months ago by jaysupport.
Viewing 1 replies (of 1 total)
  • The topic ‘price position’ is closed to new replies.