RecepBilgin Hi, I want to give an effect when it comes to the links when we use the colored header How can I do this? I'm using the links extension as an extension.
clarkwinkelmann RecepBilgin do you have a screenshot or other website as example ? You should be able to achieve many effects via custom CSS. Are you looking for help writing the CSS ?
RecepBilgin clarkwinkelmann yeah, I want to give a hover effect when it comes to link. https://prnt.sc/qcpg94
Pollux RecepBilgin If that's how I understand your wish: You can address the links' hover state with the following CSS: li[class^="item-link"]:hover { [...]; } and li[class^="item-link"] a:hover { [...]; } respectively.