• Resolved Precidia

    (@precidia)


    I love the accordion that comes with Virtue but is there any way to change the font size? It’s default size is too big for my client’s liking.

    Thanks for all the help on these forums ??

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter Precidia

    (@precidia)

    Also, if I upgrade to premium theme while working on wordpress locally, can I transfer it to my client’s live site once I’m done?

    Hey,
    The accordion title is the h5 tag, you can adjust that in the theme options or be specific to the accordion with this css:

    .panel-heading h5 {
    font-size:14px;
    }

    Yes you can transfer settings from free to premium.

    Kadence Themes

    Thread Starter Precidia

    (@precidia)

    Ahh, perfect! Thank you so much for the support.

    Thread Starter Precidia

    (@precidia)

    One more question, is there any way to change the color of the accordion or tabs? Probably something totally obvious I’m overlooking here.

    Thread Starter Precidia

    (@precidia)

    Oh, one more thing! Is there any way to change the color of the secondary menu’s subnav? I can change the Secondary Menu in theme options but the subnav remains white.

    Hey,
    1. The background color can be changed:

    .panel-heading .accordion-toggle {
    background: #eee;
    }

    The font color:

    .panel-heading h5 {
    color:#000;
    }

    what do you want to change with the tabs the tab color activated, inactivate?

    2.

    Here is an example:

    nav-second .sf-menu ul li {
    border:0;
    }
    #nav-second ul.sf-menu ul li a {
    color: #fff;
    }
    .sf-menu ul {
    background:#e76106;
    border:0;
    }

    Kadence Themes

    Thread Starter Precidia

    (@precidia)

    Thank you so much! Both worked perfectly.

    As for the tabs, I just want them to default to blue. If there is a way they could change colour from active to inactive that’d be great too.

    This will make the active tab title blue… that what you are looking for?:

    .nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus {
    color:#fff;
    background: #2d5c88;
    }

    Kadence Themes

    Thread Starter Precidia

    (@precidia)

    Yes that worked perfectly!

    Thread Starter Precidia

    (@precidia)

    I’m trying to change the inactive tab color now too. Can I use that code with ‘inactive’ replacing of ‘active’?

    .nav-tabs>li >a, .nav-tabs>li >a:hover, .nav-tabs>li >a:focus {
    color:#fff;
    background: #2d5c88;
    }

    Just need to leave off the active.

    Kadence Themes

    Thread Starter Precidia

    (@precidia)

    You’re the best!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Virtue Theme Accordion Font Size’ is closed to new replies.