Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support jaysupport

    (@jaysupport)

    You might be able to do this using custom CSS. I’ll provide an example below, but you may have to tweak this to your needs.

    You can paste it into the Additional CSS section of your theme’s customizer: WP Admin Sidebar > Appearance > Customize > Additional CSS

    .bp-contact-card {
      display: grid;
    }
    .bp-contact-card > div {
      grid-column-start: 1;
      grid-column-end: 1;
    }
    .bp-opening-hours {
      grid-row-start: 1;
      grid-column-start: 2 !important;
      grid-column-end: 2 !important;
    }

    Also note that, if the changes are not immediately visible on the front end, it could be that you have some sort of caching going. If you are using a caching plugin, please clear your cache after implementing any custom CSS.

    Thread Starter evo252

    (@evo252)

    Thanks a lot!!! I’m going to try and let you know ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Location page too long’ is closed to new replies.