• Resolved artborghi

    (@artborghi)


    Hi, great plugin you developed, thanks a lot. Please find in the linked image my issue with tag groups and the short code I use to call it in my blog page side bar (Oshine theme).

    Accordion does not show in my page, but I like it as it is in the image. Except for one thing: font size and color of the group titles. Is it possible to change them via CSS or in a simpler way? I would like it half the size it is and lighter grey. WP support tried this below but it did not work.

    #tag-groups-cloud-accordion-614ce7d76d8cah3 h3 {
    font-size: 24px !important;
    }

    Thank you very much !

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

Viewing 1 replies (of 1 total)
  • The shortcode should work. (You are using some parameters that are not available for the accordion, like keep_together and show_tabs, but that shouldn’t matter.)

    Do you have a link to a public page where I can see it in real? Your image looks like an editor from another plugin or theme and on top I read “Shortcode Editor”. The accordion needs some JavaScript to load on the page where it is displayed and it loads only on the front end (public pages), not in 3rd party editors. So maybe this issue exists only in that special editor but the accordion looks fine on the page.

    If it doesn’t work on the page, please make sure that in the Tag Groups settings > Front End > Shortcode you activated “Always load shortcode scripts”.

    Also, I recommend not to use #tag-groups-cloud-accordion-614ce7d76d8cah3 because the number will change. (It is random so that you can have many clouds on the same page, because each name must be unique.) Better use a class name:

    In the shortcode add div_class:

    div_class="my-tag-groups-accordion"

    and in your CSS:

    .my-tag-groups-accordion h3 {
    // something
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Font Size group headers’ is closed to new replies.