• Resolved Imagestemaste

    (@stemaste)


    Hi,
    in the editor of Pricing Table, I found this note: “[Features] Type cross for (cross) icon ‘x’ and type (right) for right icon! ‘v'”,
    but which is the correct syntax? cross,[cross],[features=cross] or [boh!]?
    No bullet appears to me, except what I write
    Thank you for any idea

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Imagestemaste

    (@stemaste)

    I realized that my request was incorrect.
    I would like to bring up a

    • list with numbers or symbols ‘v’ or ‘x’.
      my test is not working properly:

      <ol class="test">
         <li>First</li>
         <li>Two</li>
         <li>Three</li>
         <li>Four</li>
         <li>Five</li>
      </ol>
      

      CSS:

      .test {
       margin-left: 0;
       padding-right: 0;
       list-style-type: none;
      }
      .test li {
          counter-increment: numeration;
      }
      .test li::before {
          content: counter(numeration);
          margin-right: 5px;
          font-size: 80%;
          background-color:#3b97a1;
          color: white;
          font-weight: bold;
          padding: 3px 8px;
          border-radius: 50%;
      }
      
    Thread Starter Imagestemaste

    (@stemaste)

    Ok, I have found the solution:

    
    .pricingTable_89 .pricingContent_89 ul li:before{
    content: "\f00c";
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: #00AA00 !Important;
    transition:all 0.5s ease 0s;
    }
    

    Work, but it’s correct?

    Plugin Author ImageA WP Life

    (@awordpresslife)

    Hi @stemaste,

    Thanks for contacting us.

    If you want the cross or right icon in the table just write “cross” for “X” and “right” for “V”

    That’s all, dont need any syntax.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Features syntax’ is closed to new replies.