fancy link - color

hi, 
I want to change the red color but can not find the style, could help me
Use code:
<center>
[fancy_link title="Postres para diabéticos" link="#" style="5"]
</center>
image

Comments

  • Hi,

    you can do it using below css:
    a.mfn-link-2 span:before, a.mfn-link-4:hover:before, a.mfn-link-4:hover:after, a.hover.mfn-link-4:before, a.hover.mfn-link-4:after, a.mfn-link-5:before, a.mfn-link-7:after, a.mfn-link-7:before { background: #000; }
    a.mfn-link-2 span, a.mfn-link-2:hover span:before, a.hover.mfn-link-2 span:before, a.mfn-link-5 span, a.mfn-link-8:after, a.mfn-link-8:before { background: #E2E2E2; }
  • I color changes in the code, but the red color (hover) still remains and I need to replace it.

    ty

    image
  • Above code works also for hover as we tested it. If does not work in your case, then please use with !important declaration instead:
    a.mfn-link-2 span:before, a.mfn-link-4:hover:before, a.mfn-link-4:hover:after, a.hover.mfn-link-4:before, a.hover.mfn-link-4:after, a.mfn-link-5:before, a.mfn-link-7:after, a.mfn-link-7:before { background: #000 !important; }
    a.mfn-link-2 span, a.mfn-link-2:hover span:before, a.hover.mfn-link-2 span:before, a.mfn-link-5 span, a.mfn-link-8:after, a.mfn-link-8:before { background: #E2E2E2 !important; }
  • excellent, now if you see color 
    thank you
Sign In or Register to comment.