Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1447229

    I’m hoping to find a way to center the accordion toggle icon above the accordion content. The example in question is about halfway down the page of the link provided under the “Meet the Founders” headshots, I’d like the word “title” to be centered under the plus icons. Is this possible?

    #1447386

    Hey jaimemerz,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .cofounder_toggle.av-minimal-toggle .toggle_icon {
        position: absolute;
        margin-top: -44px;
        margin-left: 40% !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1451912

    Thank you! This works on desktop but noticed it is not centered when you adjust the browser down. Do you know how to make this responsive on all devices?

    #1451928

    Hi,

    Thank you for the update.

    We adjusted the css code a bit. Please replace the previous css with this code:

    .cofounder_toggle.av-minimal-toggle .toggle_icon {
        position: absolute;
        margin-top: -44px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
    }

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.