Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #444007

    Hello

    I have a client who is using Enfold on his website. The website is http://www.nordic.be.

    There is a search system on that site and when you do a search you get the results displayed like this: http://bit.ly/1H3YQ98

    Now my client wants to add something to some of the description of the portfolio-items … He wants to add a small ‘label’ to portfolio items that are in a certain category. Is this possible?

    I saw something like this in the demo shop theme. There you see for some articles a bleu “SALE” label.

    Blue circle in right bottom corner
    (http://nl.tinypic.com/r/f9qvit/8)

    In fact my client wants the same thing … Only I don’t realy know how I can achieve this. Can you help me with this or point me in the right direction where I must look?

    Thank you for the help!

    #444445

    Hi jurgen1979!

    You could try adding this to your custom CSS.

    .tag-kirkenes::after {
      background: none repeat scroll 0 0 red;
      content: "Testing";
      left: 20px;
      position: absolute;
      top: 20px;
      z-index: 999;
    }

    That will display some text with a red background for anything tagged with “kirkenes”.

    Is “seizoen-winter” a category? If so then you could do the same with a category.

    .seizoen-winter::after {
      background: none repeat scroll 0 0 red;
      content: "Testing";
      left: 20px;
      position: absolute;
      top: 20px;
      z-index: 999;
    }

    Best regards,
    Elliott

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