Tagged: color section, enfold, underlines
Hello, in the color section “Auf einen Blick” we would like to have the following linked topics displayed without underlining:
Bedeutung der Codequalität
Die Rolle des ALM im Softwareentwicklungsprozess
Wie ALM Consulting die Codequalität verbessert
Herausforderungen des ALM zur Codequalitätsverbesserung
Fazit
We thought that the problem would not happen after we had already solved a very similar problem with your help. Please see the following thread: https://kriesi.at/support/topic/topics-without-underlines/
Why do the underlines appear in this case even though we are still using this code?
#top #aufeinenblick .custom-color-heading a {
text-decoration: none;
}
Thank you for your support.
Hey reqonsult,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top #aufeinenblick .av_textblock_section a {
text-decoration: none;
}
this section is different, for the last solution you were using icons, now you are using h4 text links, I offered the solution to not interfere with other elements.
If you don’t want any links anywhere to be underlined try this css:
#top #wrap_all #main a {
text-decoration: none;
}
Best regards,
Mike
Hello Mike, perfect, it works. Thank you very much. You can close the thread.