• Hi Everyone,

    I need help aligning this counter on a mobile device.

    The icon and the counter to be vertically alligned on mobile devices

    Thank you

    • This topic was modified 3 years, 2 months ago by Yui. Reason: moved to fixing wordpress

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • These counters and their design are from the commercial theme (Giving Hand) and commercial plugin (WPBakery) you used to build your website.

    Please note that when you use a commercial theme/plugin and you need help with some aspect of your site handled by that commercial product, you’ll have to use the product vendor’s official support channel for help, as commercial products are not supported here at WordPress.org.

    It seems your issue can be fixed with a simple CSS code, so I’m more than happy to help you here. Please try the following code in APPEARANCE => CUSTOMIZE => ADDITIONAL CSS:

    @media only screen and (max-width: 480px) {
    .home .container .tpath-counter-section {
        display: flex;
        flex-direction: column;
    }}

    If you want to add more jazz to the show and put a ring around the counters, you can use the following code instead:

    @media only screen and (max-width: 480px) {
    .home .container .tpath-counter-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: 20px solid #0d7a8e;
        border-radius: 50%;
        width: 250px;
        height: 250px;
        padding: 20px;
    }
    .home .vc_custom_1675314418267 {
     display: flex;
     justify-content: center;
    }}

    Standing by for feedback.

    Thread Starter sholis

    (@sholis)

    Thanks George.

    I truly appreciate your support.

    Meanwhile, did i ever contacted you on whatsapp a long while ago?

    You told me you can develop any plugin..

    Please share your whatsapp number.
    Many thanks

    Please share your whatsapp number.

    I’m sorry, but that’s against the forum rules: https://wordpress.org/support/forum-user-guide/faq/#why-is-asking-for-offering-email-support-not-permitted

    Thread Starter sholis

    (@sholis)

    Oh, I am sorry about that.

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

The topic ‘Counter Allignment’ is closed to new replies.