Tagged: quick css
Hi,
I am trying to remove underlines from H3-marked text in text elements.
The following quick css code does not have any effects:
.avia_textblock a {
text-decoration: none;
}
Can you give me a hint?
Thank you
Klaus
Hi Bklaus_sk!
Please try using following one
h3 * {
text-decoration: none !important;
}
Cheers!
Yigit
Hi Yigit,
great, thanks, that did the job.
(May be I should once again try to understand CSS :-( )
Klaus