How can we modify the yellow underline style that appears below section and module titles? I want to change the yellow angled lines with something else.

    1option Hi

    That is image background set for some specific sections such as:

    .acm-features.style-5 .title-lead h1 span:after, .acm-features.style-5 .title-lead .h1 span:after {
      content: "";
      background-image: url("../images/pattern-2.png");
      background-repeat: repeat-x;
      width: 100%;
      height: 16px;
      display: block;
      position: absolute;
      top: 100%;
      left: 0;
    }
    .section-title-wrap .section-title:after {
        content: "";
        background-image: url("../images/pattern-1.png");
        background-repeat: no-repeat;
        width: 195px;
        height: 16px;
        display: block;
    }
    .acm-features.style-2 .title-lead h1:after, .acm-features.style-2 .title-lead .h1:after {
        content: "";
        background-image: url("../images/pattern-1.png");
        background-repeat: no-repeat;
        width: 195px;
        height: 16px;
        display: block;
    }
    .acm-testimonial.style-1 .title-lead h2:after, .acm-testimonial.style-1 .title-lead .h2:after {
        content: "";
        background-image: url("../images/pattern-1.png");
        background-repeat: no-repeat;
        width: 195px;
        height: 16px;
        display: block;
    }

    You can find these images in template directory: /templates/ja_podcast/images/

    Write a Reply...
    You need to Login to view replies.