circumference accordian panels – changing color

Home Forums WordPress Themes – Premium Circumference circumference accordian panels – changing color

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #15642
    Karen Arbasetti
    Participant

    i’d ike to use a different color than the default colors on the accordian panels in the circumference theme is that possible?

    #15643
    Anonymous
    Inactive

    You can add colors there by adding few CSS tweaks. You can find the following code example of .panel-acqa class in style.css file. Here you can add the new class which you want to create like others.

    .panel-aqua > .panel-heading,
    .panel-brown > .panel-heading,
    .panel-tan > .panel-heading,
    .panel-red > .panel-heading,
    .panel-orange > .panel-heading,
    .panel-green > .panel-heading {
    	 color: #fff;
    	 border-color: #e7eaec;
    }
    

    And the following line controls the background color. Create your new class like this.

    .panel-aqua > .panel-heading {
      background-color: #25b7c3;
    }
    

    I hope you’ll be doing these addition to child theme.

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