There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
[SOLVED] How to underline links on hover in widgets?
#1
Apr 21, 2009, 04:42 PM
Whitelisted
1 posts · Apr 2009
P.S. Bold option for links doesn't work
#2
May 1, 2009, 11:17 AM
d_random
51 posts · Apr 2009
Put in HTML/CSS Interts -->CSS Inserts
.widget ul li a:link,
.widget ul li a:visited,
.widget ul li a:active,
.widget ul li a:hover {
text-decoration: underline;
}
#3
Oct 10, 2009, 01:18 PM
waveainair
10 posts · Oct 2009
This code does not work for me.
I tried...
.widget ul li a:link,
.widget ul li a:visited,
.widget ul li a:active,
.widget ul li a:hover {
text-decoration: underline !important;
border-left: 0 !important;
padding-left: 0 !important;
}
...but this only made the links underlined permanently.
#4
Oct 10, 2009, 01:24 PM
waveainair
10 posts · Oct 2009
I just guessed and it worked. I put the following in CSS Inserts.
.widget ul li a:hover {
text-decoration: underline !important;
}