Oh ! I removed it because it didn't work.
The extra CSS code after /* +++ TTG +++ */ is used by my header, menu and footer which are imported from my Web site. All 3 work well.
I guess you found the problem. Putting the underline/hover code before this extra CSS code doesn't work. Putting it at the very end doesn't work either but adding !important makes it work.
I did check this extra CSS code before posting for help and it doesn't relate to "widget". Also, the only "text-decoration" references are set to "underline". Tricky isn't !
It was then easy to find where the problem is by moving the underline/hover code up until it stops working.
I still can't believe that the line that causes the problem is this one:
Code:
/* ++++++++++++++++++++ TTG ++++++++++++++++++++++ */
Even worse, removing this comment line doesn't fix the problem...
This works:
Code:
/* ++++++++++++++++++++ TTG ++++++++++++++++++++++ */
div.widget a:hover {
text-decoration: underline !important;
}
And this doesn't work:
Code:
div.widget a:hover {
text-decoration: underline !important;
}
/* ++++++++++++++++++++ TTG ++++++++++++++++++++++ */
And this doesn't work either:
Code:
div.widget a:hover {
text-decoration: underline !important;
}
And, changing the comment line to this one /* */ doesn't change anything.
Well, at least it works now ! Many many thanks for your help.
Jules
Problem solved